equal
deleted
inserted
replaced
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 |