# HG changeset patch # User Oleksandr Gavenko # Date 1298992580 -7200 # Node ID 64ecb45d68fa9d2618b4ea0561b5a90c6233697e # Parent d0bddeaf586b776e0bdbbade2042c3c7d0d319ba git analog of 'hg outgoing'. diff -r d0bddeaf586b -r 64ecb45d68fa git.rst --- 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.