git.rst
changeset 2233 d0c386e6f039
parent 2232 ac7f6d8bea28
child 2251 841872ee6d85
equal deleted inserted replaced
2232:ac7f6d8bea28 2233:d0c386e6f039
   414 
   414 
   415 Alternative commands may look like::
   415 Alternative commands may look like::
   416 
   416 
   417   $ git reset --hard $HASH
   417   $ git reset --hard $HASH
   418   $ git push -u origin master --force
   418   $ git push -u origin master --force
       
   419 
       
   420 You can delete remote branch with syntax of appended colon before branch name::
       
   421 
       
   422   $ git reset HEAD^
       
   423   $ git push origin :$NAME
       
   424   $ git push origin $NAME
   419 
   425 
   420 Git bisect
   426 Git bisect
   421 ==========
   427 ==========
   422 
   428 
   423 ``bad`` changes should be later in graph history then ``good`` ones. To use
   429 ``bad`` changes should be later in graph history then ``good`` ones. To use