git analog of 'hg incoming'.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 01 Mar 2011 17:03:41 +0200
changeset 833 2fc97313ce78
parent 832 d3b96f56c613
child 834 5bed6172a7c4
git analog of 'hg incoming'.
git.rst
--- a/git.rst	Tue Mar 01 16:41:25 2011 +0200
+++ b/git.rst	Tue Mar 01 17:03:41 2011 +0200
@@ -140,6 +140,18 @@
 
   $ git commit -a -m "Added clean target."
 
+* git analog of 'hg incoming'.
+
+git does not directly support such feature. You can emulate it by:
+
+  $ git fetch
+  $ git log master..origin/master   # or just '..origin/master'
+
+By previous commands you grab changes from remote server! You can apply them:
+
+  TODO
+  $ git merge
+
 * Using git to work with SVN offline.
 
 Prepare SVN and git utilities: