0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gitローカルリポジトリ操作方法

Last updated at Posted at 2021-08-22

#ローカルリポジトリからコミットまで
##1.ローカルリポジトリ作成

git init
(.gitが作成される)
※リポジトリを作るディレクトまでcdコマンドで移動して行ってください。

##2.ステージングする

git add ファイル名
※git add --allだと全てのファイルをステージング

##3.コミットする

git commit -m "コミットメッセージ"
※-m がない場合エディタが開くのでコミットメッセージを書いて閉じると良い

##4.コミットの履歴を見る

git log 

##ファイルの状態を確認したい

git status
※add、commitされているか確認できる

##修正前後の差分を確認

git diff
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?