git:git_rebase
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
git:git_rebase [2016/11/21 11:35] – peter | git:git_rebase [2019/11/29 15:04] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== GIT - git rebase ====== | ||
- | |||
- | Copies commits/ | ||
- | |||
- | All the changes that were committed on a branch are replayed on another. | ||
- | |||
- | If you use the interactive version (-i), you could pick and reorder the commits you want. This is great if you don't quite know which commits you want to apply and would like to see some metadata on them. | ||
- | |||
- | <code bash> | ||
- | git rebase -i HEAD~3 –aboveAll | ||
- | </ | ||
- | |||
- | Rebase also allows you to edit previous commit messages (reword), combine multiple commits (squash), split commits (edit), and delete/ | ||
- | |||
- | Don't rebase commits that have been pushed publicly as others may have already based work on those commits. | ||
- | |||
- | If you want to replay changes from a topic branch that's branched off another topic branch you could use | ||
- | |||
- | <code git> | ||
- | git rebase –onto master topic1 topic 2 | ||
- | </ | ||
- | |||
- | which will replay only the changes to topic2 not common to topic1 to master. | ||
- | |||
- | |||
- | ===== vs. Merge ===== | ||
- | |||
- | Merge will give you a record of exactly what happened during the entire history. | ||
git/git_rebase.1479728150.txt.gz · Last modified: 2020/07/15 09:30 (external edit)