Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Usually, I work with branches in Git, but I don't like to see hundreds of branches in my working tree (Git history). I'm wondering if there is a method in Git to "join" all commits in a branch in only one commit (ideally with a clear commit message).

Something like this:

git checkout -b branch
<some work>
git commit -a -m "commit 1"
<some work>
git commit -a -m "commit 2"
<some work>
git commit -a -m "commit 3"
git checkout master
git SUPER-JOIN branch -m "super commit"

After this, only "super commit" will exist in the git log.

share|improve this question

2 Answers

up vote 20 down vote accepted

This can be done using git rebase and squash, or using git merge --squash, see

Git merge flattening

and

git: squash my commit?

share|improve this answer
git merge --squash is amazing. I wish I had read this more carefully in 2011 ;) +1 – Yar Jan 6 at 21:22
1  
The problem with git merge --squash is that it doesn't actually create a merge commit. GUIs like GitHub's network viewer will not show the branches rejoining; one will simply end abruptly while the other continues. – Maxpm Jun 12 at 17:54

It sounds like you're looking for the --squash option of git-merge:

git checkout master
git merge --squash branch -m "super commit"
share|improve this answer
1  
+1 Sexy answer! – JohnnyQ May 16 at 7:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.