はじめに
個人的に忘れやすい git コマンドをメモしておきます
ブランチ作成
1 | git checkout -b hoge |
ブランチ削除(ローカル)
1 | git branch -D hoge |
ブランチ削除(リモート)
1 | git push --delete origin hoge |
マージ(master の内容を hoge に取り込む)
1 | git checkout hoge |
チェリーピック(特定のコミットを取り込む)
1 | git cherry-pick 123456789abcde |
コミットを戻す
1 | git reset --hard 123456789abcde |
2つ以上前のコメントの変更
1 | git log --oneline |