git.rst
changeset 2115 0263a79eeb3b
parent 2102 ce5d8887b874
child 2116 f92d8941f4a8
equal deleted inserted replaced
2114:9295a7068b80 2115:0263a79eeb3b
   252   $ cat .git/gitconfig
   252   $ cat .git/gitconfig
   253 
   253 
   254 Showing what remote branches tracked::
   254 Showing what remote branches tracked::
   255 
   255 
   256   $ git remote show $remote
   256   $ git remote show $remote
       
   257 
       
   258 Undo mistaken rebase
       
   259 ====================
       
   260 
       
   261 If there are no any ``reset``, ``rebase`` or ``merge`` afterwards the easiest
       
   262 way to recode to pre-rebase state is one of::
       
   263 
       
   264   $ git rebase --abort
       
   265   $ git reset --hard ORIG_HEAD
   257 
   266 
   258 Debug git network operation
   267 Debug git network operation
   259 ===========================
   268 ===========================
   260 
   269 
   261 Git uses libcurl for network operation::
   270 Git uses libcurl for network operation::