Changes between Version 32 and Version 33 of GitForDarcsUsers
- Timestamp:
- 04/05/11 04:26:25 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GitForDarcsUsers
v32 v33 493 493 == darcs unrecord == 494 494 495 Not sure if this will unrecord any patches except the most recent??? 495 To unrecord the most recent patch: 496 496 497 {{{ 497 498 git reset --soft HEAD^ 498 499 }}} 500 501 To unrecord a patch other than the most recent one, first you need to re-order patches so that the one you want to unrecord is at the top: 502 503 {{{ 504 git rebase -i <commit> 505 }}} 506 507 where `<commit>` is the hash of the commit you want to unrecord. This pops up an editor with the list of patches since `<commit>`, and you can re-order them, squash them together, or remove some altogether. (Note dangers of rebase, see above). 499 508 500 509 == darcs unpull ==
