Skip to content

Diff of Git

Changes between revision 4 - add command and revision 5 - modify
--- Git
+++ Git
@@ -16,17 +16,17 @@
 
  * create new branch and change branch [[[#!Vim bash
 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>
+git merge <target-branch-name>
 ]]]
 
  * show current branch name [[[#!Vim bash
 git branch
 git branch --show-current
 ]]]