git のメモ
ブランチ (git branch / git checkout)
ブランチの切り替え
git checkout <ブランチ名>
ブランチの削除
git branch -d <ブランチ名>
空のブランチ作成
git checkout --orphan=<ブランチ名>
git reset --hard
ログ
ログを表示
git log --decorate=full --graph --all
:::note
vscode を使えるのならば、拡張機能 Git Graph
をインストールするとよい。
:::
過去に戻る
# コミット ID を調べる
git log
git checkout <コミット ID>
:::note コミット ID は 4 文字で省略可 :::
過去から戻る
git checkout <ブランチ名>
コミットを取り消す (git reset)
git reset --soft @^
:::note @ は HEAD と同じ。直前のものは ^ で表す。 :::