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-04-28

#はじめに
 アプリ開発中、リセットしたい時にいつもググっていたので自分用にまとめます。新しくコマンドを使うたびに更新していく予定です。

#ステージング(git add .)前の編集を削除

スクリーンショット 2021-04-28 14.16.42.png

###Changes not staged for commit の編集を削除
これらはgit add .する前のファイルで次のコマンドで一つ前のコミットした状態に戻せる。

git checkout .

###Untracked files の削除
これらはまだ一度もcommitしたことがないファイルで
次のコマンドで削除可能。

git clean -f

#誤ってmainブランチで作業してしまったとき
別のブランチを作成して作業する予定だったが間違ってmainで作業してしまった場合の対処法。

git stash save

これでmainでの編集内容を保存。

git checkout -b development
git stash pop

次にブランチを作成し、保存していた編集内容を反映させる。

#おわりに
Gitコマンドが覚えられない(泣)
随時更新予定

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?