When does one use git rebase vs git merge?
Does one still need to merge after a successful rebase?
|
When does one use git rebase vs git merge? Does one still need to merge after a successful rebase? |
|||||||||||||
|
Short Version
So when do you use either one? Merge
Rebase
|
|||||||||||||||
|
|
To complement my own answer mentioned by TSamper,
In the case that I describe, I rebase The other scenario (described in Git Ready for instance), is to bring your work directly in A git tree at default when we have not merged nor rebased
we get by rebasing:
That second scenario is all about: how do I get new-feature back into master. My point, by describing the first rebase scenario, is to remind everyone that a rebase can also be used as a preliminary step to that (that being "get new-feature back into master"). So:
|
|||||||||||||||||||||
|
|
Merge means: Create a single new commit that merges my changes into the destination. Rebase means: Create a whole new series of commits, using my current set of commits as hints. In other words, calculate what my changes would have looked like if I had started making them from the point I'm rebasing on to. After the rebase, therefore, you might need to re-test your changes and during the rebase, you would possibly have a few conflicts. Given this, why would you rebase? Just to keep the development history clear. Let's say you're working on feature X and when you're done, you merge your changes in. The destination will now have a single commit that would say something along the lines of "Added feature X". Now, instead of merging, if you rebased and then merged, the destination development history would contain all the individual commits in a single logical progression. This makes reviewing changes later on much easier. Imagine how hard you'd find it to review the development history if 50 developers were merging various features all the time. That said, if you have already pushed the branch you're working on upstream, you should not rebase, but merge instead. For branches that have not been pushed upstream, rebase, test and merge. Another time you might want to rebase is when you want to get rid of commits from your branch before pushing upstream. For example: Commits that introduce some debugging code early on and other commits further on that clean that code up. The only way to do this is by performing an interactive rebase: UPDATE: You also want to use rebase when you're using Git to interface to a version control system that doesn't support non-linear history (subversion for example). When using the git-svn bridge, it is very important that the changes you merge back into subversion are a sequential list of changes on top of the most recent changes in trunk. There are only two ways to do that: (1) Manually re-create the changes and (2) Using the rebase command, which is a lot faster. UPDATE2 : One additional way to think of a rebase is that it enables a sort of mapping from your development style to the style accepted in the repository you're committing to. Let's say you like to commit in small, tiny chunks. You have one commit to fix a typo, one commit to get rid of unused code and so on. By the time you've finished what you need to do, you have a long series of commits. Now let's say the repository you're committing to encourages large commits, so for the work you're doing, one would expect one or maybe two commits. How do you take your string of commits and compress them to what is expected? You would use an interactive rebase and squash your tiny commits into fewer larger chunks. The same is true if the reverse was needed - if your style was a few large commits, but the repo demanded long strings of small commits. You would use a rebase to do that as well. If you had merged instead, you have now grafted your commit style onto the main repository. If there are a lot of developers, you can imagine how hard it would be to follow a history with several different commit styles after some time. |
||||
|
|
I experimented with a test repository and I finally I got it :) :)! It's simple, with rebase you say to use another branch as new base for your work so... If you have for example a branch master and you create a branch to implement a new feature, say you name it cool-feature of course the master branch is the base for your new feature. Now at a certain point you want to add the new feature you implemented in the master branch, you could just switch to master and merge the cool-feature branch:
but this way a new dummy commit is added, if you want to avoid spaghetti-history and of course be sexier you can rebase
Alternatively if you want to resolve conflicts in your topic branch as VonC suggested you can rebase you branch this way
and then merge it in master
This time since the topic branch has the same commits of master plus the commits with the new feature the merge will be just a fast-forward ;) Now the question is...is it correct? Is just rebase a smarter merge? Did I understand well or I was dreaming? It's difficult to find easy readings about rebase, I hope this will help and it's correct. |
|||||
|
|
|
before merge/rebase:
after
after
(A, B, C, D, E and F are commits) this example and much more well illustrated info about git can be found here: http://excess.org/article/2008/07/ogre-git-tutorial/ |
|||
|
|
|
the pro git book as a really good explanation on the rebasing page http://git-scm.com/book/en/Git-Branching-Rebasing basically a merge will take 2 commits and combine them. a rebase will go to the common ancestor on the 2 and incrementally apply the changes on top of each other. this makes for a 'cleaner' more linear history. but when you rebase you abandon previous commits and create new ones. so you should never rebase a repo that is public. the other people working on the repo will hate you. for that reason alone i almost exclusivly merge. 99% of the time my branches dont differ that much, so if there are conflicts it's only in one or two places. |
|||
|
|
|
http://www.jarrodspillers.com/2009/08/19/git-merge-vs-git-rebase-avoiding-rebase-hell/ The above link answer these question about merge VS --rebase How exactly does rebase differ from merge? When/Why should you use it instead of a merge? When should you absolutely not use it? |
|||
|
|