--- 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: