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 commitへ一時的に巻き戻す。

Posted at

備忘録です。

git コマンド

# ワーキングツリーとインデックスの内容を stash に一時保存する。
git stash 
# コミットIDを探す。
git log

# 過去のコミットに戻る
git switch -d <コミットID> 

# 過去に戻れたか確認: 
git log --all --oneline

使い道の例

  • 他人のコードを読んでいるとき。最終的な成果物より、開発手法や過程を見たいと思う時がある。
  • あるバージョンのコードをビルドしたいとき。
  • 単純に前の状態へ戻したいとき。
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?