5 次代碼提交 835d5cd690 ... 72406fcc89

作者 SHA1 備註 提交日期
  testuser1 72406fcc89 Merge branch 'bob' 5 年之前
  testuser1 c7f96a6989 Add info about git merge. 5 年之前
  testuser1 16e2d74ea9 Modify git merge info. 5 年之前
  testuser1 ca1637af2b Add info about git merge. 5 年之前
  testuser1 3003fc7067 Add branch doc. 5 年之前
共有 2 個文件被更改,包括 17 次插入0 次删除
  1. 5 0
      alice.txt
  2. 12 0
      bob.txt

+ 5 - 0
alice.txt

@@ -0,0 +1,5 @@
+To list branches use:
+$ git branch
+
+To list remote branches:
+$ git branch --verbose

+ 12 - 0
bob.txt

@@ -0,0 +1,12 @@
+TO - branch (for example master)
+FROM - branch (for example bob)
+
+To do merge just checkout TO:
+$ git checkout TO
+
+Do merge:
+$ git merge FROM
+
+Beware of conflicts! :)
+
+Fear the merge!