git analog of 'hg outgoing'.
--- a/git.rst Tue Mar 01 17:06:15 2011 +0200
+++ b/git.rst Tue Mar 01 17:16:20 2011 +0200
@@ -44,6 +44,10 @@
$ export http_proxy="http://username:password@proxy:port/"
$ git clone http://github.com/$user/$proj.git $proj
+You can store proxy settings under repository local config file:
+
+ $ git config http.proxy http://$user:$passwd@$ip:$port
+
* Start your project.
Setup proj space on fs.
@@ -151,6 +155,13 @@
TODO
$ git merge
+* git analog of 'hg outgoing'.
+
+git does not directly support such feature. You can emulate it by:
+
+ $ git fetch
+ $ git log origin/master..master # or just 'origin/master..'
+
* Debug git network operation.
Git uses libcurl for network operation.