概要 ファイルを編集前の状態に戻す 内容 以下のコマンドでファイルを編集前の状態に戻します。 git checkout <ファイル名> サンプル ・Gitから最新ファイル取得 ・hoge.txtを編集 ・status,diffを確認=>差分あり ・checkoutを行う ・status,diffを確認=>差分なし $git status # On branch master # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: hoge.txt # no changes added