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で状態を確認したい時や綺麗に戻したい時に使うコマンド

Posted at

#はじめに
コードを書いてると、変更しているファイルを確認したり、編集・ステージングの内容を取り消したい時がたびたび訪れます。
整理も兼ねてよく使っているコマンドをまとめます。

##ブランチを確認したい
####現在のブランチを表示

$ git branch 
* hoge
  fuga
  piyo

####ブランチの切り替え

$ git checkout fuga

##変更を確認したい
####変更されているファイルを確認

$ git status

####ファイルの変更内容を確認

$ git diff HEAD {ファイルパス}

####コミットするファイルを指定

$ git add {ファイルパス}

##もう一度綺麗な状態に戻りたい
####新しいファイルの取り消し

git clean -f

####編集・ステージングの取り消し

git reset --hard HEAD

##おわりに
間違って大事な更新を消さないように気をつけましょう。

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?