Skip to content

Diff of Git

Changes between revision 2 - add command and revision 3 - add command
--- Git
+++ Git
@@ -18,10 +18,14 @@
 git checkout -b <branch-name>
 ]]]
 
  * remove branch [[[#!Vim bash
 git branch -d <branch-name>
 ]]]
 
  * merge target branch to current branch [[[#!Vim bash
 git merget <target-branch-name>
 ]]]
+
+ * show current branch name [[[#!Vim bash
+git branch --show-current
+]]]