aboutsummaryrefslogtreecommitdiff
path: root/git.cheat
blob: a32b322fca53555d36fdad7ea453a11baf04b23e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
% git

# Fixup commit
git commit --fixup <commit_id>

# Rebase
git rebase -i <commit_id>

# Checkout
git checkout <branch>

# Delete a branch
git branch -d <branch>

$ commit_id: git log --pretty=reference --- --column 1 --delimiter '\s'
$ branch: git branch | awk '{print $NF}'