@@ -0,0 +1,5 @@
+To list branches use:
+$ git branch
+
+To list remote branches:
+$ git branch --verbose
@@ -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!