git.rst
changeset 1651 c77807176b36
parent 1650 a48c3c61d0f9
child 1714 eed8cfffa44e
equal deleted inserted replaced
1650:a48c3c61d0f9 1651:c77807176b36
   171 
   171 
   172 Add alias::
   172 Add alias::
   173 
   173 
   174   [alias]
   174   [alias]
   175   glog = log --all --graph
   175   glog = log --all --graph
       
   176 
       
   177 Git analog of 'hg rollback'.
       
   178 ============================
       
   179 
       
   180 To edit commit message of last commit::
       
   181 
       
   182   $ git commit --amend -m "$MSG"
       
   183 
       
   184 To edit messages of old commits starting from ``$REV``::
       
   185 
       
   186   $ git rebase -i $REV
   176 
   187 
   177 Debug git network operation.
   188 Debug git network operation.
   178 ============================
   189 ============================
   179 
   190 
   180 Git uses libcurl for network operation::
   191 Git uses libcurl for network operation::