Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
2answers
6k views

In git, what is the difference between merge --squash and rebase?

I'm new to git and I'm trying to understand the difference between a squash and a rebase. As I understand it you perform a squash when doing a rebase.
6
votes
5answers
4k views

Git squash all commits into a single commit

How do you squash your entire repository down to the first commit? I can rebase to the first commit, but that would leave me with 2 commits. Is there a way to reference the commit before the first ...
5
votes
2answers
88 views

Is there a way to squash a number of commits non-interactively?

I'm trying to squash a range of commits - HEAD to HEAD~3. Is there a quick way to do this, or do I need to use rebase --interactive?
4
votes
2answers
3k views

git rebase interactive: squash merge commits together

I wanted to have a simple solution to squash two merge commits together during an interactive rebase. My repository looks like: X --- Y --------- M1 -------- M2 (my-feature) / / ...
2
votes
2answers
96 views

Does git merge --squash cause headaches with cross branch merges

I'm working in a team which is growing and making use of git. We are generally working in our own branches. I pulled some changes from another workers repository. His changes eventually were added ...
2
votes
1answer
251 views

Massive git commit squashing

My company is in the middle of converting from CVS over to git. We've been on CVS for a long time, so there is a huge history. Too much to do by hand. Looking at the logs, there is a lot of squashing ...
1
vote
1answer
36 views

Accept default git commit message after a squashed merge

I would like to do the following in a script: git merge --squash someBranch git push The problem is that the merge does not do a commit. So before the push I have to commit. The default commit ...
1
vote
2answers
120 views

Any gui for git merge (w squash)?

My work flow: branch from master work in my branch, commit frequently (100+) when the job is done in my branch, merge master into my branch, resolve all the conflict. CODE REVIEW TIME before merging ...
1
vote
2answers
62 views

Git -i rebase : Unknown command: squash

At the current point my git-rebase-todo is squash: f732993 aaatest # Rebase f3a7aa7..f732993 onto f3a7aa7 # # Commands: # p, pick = use commit # r, reword = use commit, but edit the commit message # ...
1
vote
1answer
522 views

How to squash commits in git after they have been pushed?

This gives a good explanation of squashing multiple commits: http://book.git-scm.com/4_interactive_rebasing.html but it does not work for commits that have already been pushed. How do I squash the ...
1
vote
2answers
213 views

git squash followed by push retransmits data

I want to git-push a directory full of binary data to a remote server. As this may take days, I commit locally and push one file at a time (if I commit everything at once and push, if the transfer ...
1
vote
2answers
146 views

Reorganizing hunks into commits

I have made a major refactoring of some code, and in the process I have commited several times. This has not been pushed to any public repo yet. Before pushing, I would like now reorganize the commits ...
1
vote
1answer
171 views

How can I safely use git rebase when working on multiple computers?

I work on the same project on two different computers, desktop and laptop. Sometimes I need to transition between them while in the middle of some task/feature. So I want to make a commit on the ...
1
vote
1answer
50 views

How do I make a copy of a branch for testing rebase?

I've done this before by creating a clone and doing the rebase in the clone, but I suspect I could do it safely on a separate branch. I have a feature branch feat-x with about 25 commits on it. I'd ...
0
votes
1answer
25 views

How can I create a sibling branch that includes all the commits from another branch into one node?

I have a branch, mybranch, that has six commits and stems from commit C. I would like to create a new branch, also based on commit C, that effectively includes all the commits from mybranch, squashed ...
0
votes
2answers
119 views

Remove/squash entries in a vertical hash

I have a grid that represents an X, Y matrix, stored as a hash here. Some points on the X Y matrix may have values (as type string), and some may not. A typical grid could look like this: {[9, ...