aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git.cheat7
1 files changed, 7 insertions, 0 deletions
diff --git a/git.cheat b/git.cheat
index 07c288f..a32b322 100644
--- a/git.cheat
+++ b/git.cheat
@@ -6,4 +6,11 @@ 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}'