# HG changeset patch # User Oleksandr Gavenko # Date 1298991821 -7200 # Node ID 2fc97313ce7850ce1eaed0780ea614839e1cc73a # Parent d3b96f56c613201900a898e65f6b3492eefb1e60 git analog of 'hg incoming'. diff -r d3b96f56c613 -r 2fc97313ce78 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: