git.rst
changeset 1650 a48c3c61d0f9
parent 1641 04e215a475e0
child 1651 c77807176b36
equal deleted inserted replaced
1649:b4cc69426a4c 1650:a48c3c61d0f9
   160 
   160 
   161 git does not directly support such feature. You can emulate it by::
   161 git does not directly support such feature. You can emulate it by::
   162 
   162 
   163   $ git fetch
   163   $ git fetch
   164   $ git log origin/master..master   # or just 'origin/master..'
   164   $ git log origin/master..master   # or just 'origin/master..'
       
   165 
       
   166 git analog of 'hg glog'.
       
   167 ========================
       
   168 ::
       
   169 
       
   170   $ git log --all --graph
       
   171 
       
   172 Add alias::
       
   173 
       
   174   [alias]
       
   175   glog = log --all --graph
   165 
   176 
   166 Debug git network operation.
   177 Debug git network operation.
   167 ============================
   178 ============================
   168 
   179 
   169 Git uses libcurl for network operation::
   180 Git uses libcurl for network operation::