Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

163
votes
8answers
36k views

git workflow and rebase vs merge questions

I've been using git now for a couple months on a project with one other developer. I have several years of experience with svn, so I guess I bring a lot of baggage to the relationship. I have heard ...
150
votes
6answers
27k views

Undoing a git rebase

Does anybody know how to easily undo a git rebase? The only way that comes to mind is to go at it manually: git checkout the commit parent to both of the branches then create a temp branch from ...
58
votes
7answers
28k views

git: how to squash the first two commits?

With git rebase --interactive <commit> you can squash any number of commits together into a single one. It's an OCD heaven. And that's all great unless you want to squash commits into the ...
54
votes
3answers
8k views

Hg: How to do a rebase like git's rebase

In Git I can do this: 1. Start working on new feature: $ git co -b newfeature-123 # (a local feature development branch) do a few commits (M, N, O) master A---B---C \ ...
52
votes
5answers
9k views

When should I use git pull --rebase?

I know of some people who use git pull --rebase by default and others who insist never to use it. I believe I understand the difference between merging and rebasing, but I'm trying to put this in the ...
34
votes
1answer
16k views

git rebase and git push: non-fast forward, why use?

I have a branch that should be available to other contributors and that should constantly stay up to date with the master. Unfortunately, every time I do 'git rebase' and then try to push, it results ...
33
votes
5answers
11k views

How do I combine the first two commits of a Git repository?

Suppose you have a history containing the three commits A, B and C: A-B-C I would like to combine the two commits A and B to one commit AB: AB-C I tried git rebase -i A which opens up my ...
31
votes
5answers
6k views

git: how to insert a commit as the first, shifting all the others?

I've asked before about how to squash the first two commits in a git repository. While the solutions are rather interesting and not really as mind-warping as some other things in git, they're still a ...
23
votes
3answers
2k views

Can I make fast forwarding be off by default in git?

I can't really ever think of a time when I would use git merge rather than git rebase and not want to have a commit show up. Is there any way to configure git to have fast forwarding off by default? ...
23
votes
2answers
5k 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.
21
votes
2answers
4k views

What is the advantage of the rebase command in Mercurial?

Compare to standard push/pull, what is the advantages of using the rebase command in Mercurial?
17
votes
3answers
4k views

How to skip “Loose Object” popup when running 'git gui'

When I run 'git gui' I get a popup that says This repository currently has approximately 1500 loose objects. It then suggests compressing the database. I've done this before, and it reduces the ...
15
votes
6answers
3k views

How to back up private branches in git

I have a local branch for day-to-day dev work in git. My workflow is: Do stuff on local_branch, commit Fetch origin/master Rebase local_branch to catch up with new stuff from origin/master It all ...
12
votes
4answers
770 views

git rebase branch with all subbranches

is it possible to rebase a branch with all it's subbranches in git? i often use branches as quick/mutable tags to mark certain commits. * master * * featureA-finished * * origin/master now i want ...
12
votes
4answers
974 views

When would one need git-rebase?

Everytime I read the git-rebase documentation, I get lost. It feels to me like a kind of a low-level operation (read: dark magic). Quoting the docs: Assume the following history exists and the ...
11
votes
2answers
944 views

How do I recover/resynchronise after someone pushes a rebase or a reset to a published branch?

I am making this question so I can link to it later. There is often talk about how you should never rebase published work and it’s dangerous, etc. However, I have not seen any recipes posted for how ...
11
votes
2answers
2k views

Why does git svn dcommit lose the history of merge commits for local branches?

I have a local git repository created with git svn clone. I make a local branch, make some changes, switch back to master, git svn rebase and if it's all good, I merge my branch back into master. ...
10
votes
2answers
950 views

Git: How to rebase many branches (with the same base commit) at once?

I have a master branch in my project, that I use to pull changes from other people. From that, I usually have several topic branches on which I'm currently working. My question is: Is there a way for ...
9
votes
3answers
903 views

git svn rebase resulted in byte order is not compatible error

Following is the error I am getting when I tried 'git svn rebase': Byte order is not compatible at ../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_retrieve.al) line 380, at ...
9
votes
4answers
767 views

git rebase, keeping track of 'local' and 'remote'

When doing a git rebase, I often have difficulty working out what is happening with the 'local' and 'remote' when resolving conflicts. I sometimes have the impression that they swap sides from one ...
8
votes
2answers
167 views

c++ visual studio 2010 exe in resource get Rebased?

Has anyone noticed that if you import an exe as resource it gets rebased and also seems that its PE header gets rebuilt? There are times that this is irritating. Does anybody knows how to disable the ...
8
votes
2answers
580 views

Rebasing a branch including all its children

I have the following Git repository topology: A-B-F (master) \ D (feature-a) \ / C (feature) \ E (feature-b) By rebasing feature branch I expected to rebase the whole ...
8
votes
2answers
3k views

git rebase fatal: Needed a single revision

I have a branch of a public repository and I am trying to update my branch with the current commits from the original repository: $ git fetch <remote> remote: Counting objects: 24, done. ...
8
votes
2answers
531 views

git workflow: throwaway merges and git-rerere - what's the point?

Like most people new to Git, I've had my share of confusion trying to decipher the use cases applicable to git merge and git rebase. I think I've finally decided that, as far as the resulting working ...
8
votes
4answers
364 views

When will `git pull --rebase` get me in to trouble?

I understand that when I use git pull --rebase, git will re-write history and move my local commits to occur after all of the commits in the branch I just pulled from. What I don't understand is ...
8
votes
2answers
1k views

How to move some changeset to a new branch in mercurial

I want to move a changeset from one branch to another. Basically, I currently have: A -> B -> C -> D # default branch And I want: A # default branch \-> B -> C -> D # ...
8
votes
3answers
1k views

How to merge two branches without a common ancestor?

I have started using Git in the middle of my project, where the first two commits are just some initial settings (.gitignore and .gitattributes), and the third commit M2 adds the content of the SVN ...
8
votes
4answers
7k views

Unable to understand Git branch, merge and rebase

I know the thread which says that rebase is for small changes of teamMates, while merge for large changes. I keep three Gits of three teamMates in the following directory structure where we all have ...
7
votes
2answers
829 views

Git: rebasing a merge commit

Take the following case: I have some work in a topic branch and now I'm ready to merge back to master: * eb3b733 3 [master] [origin/master] | * b62cae6 2 [topic] |/ * 38abeae 1 I perform ...
7
votes
2answers
3k views

Git: Move a branch to a new tag

My personal Wordpress install is cloned from the wordpress git mirror on GitHub. I checked out the 2.7.1 tag to the branch "stable" (git checkout -b stable 2.7.1) and its been running fine since. Now ...
6
votes
1answer
170 views

Splicing over discontinuities in Mercurial repository timeline

I converted a Subversion repository to Mercurial a few months back and I wound up leaving two meaningless gaps in my revision history. I'm trying to figure out if I can just splice over the gaps, but ...
6
votes
1answer
747 views

git svn dcommit without rebasing

Our company uses (and supports!) SVN, but I tend to use git. What I want to try is to have git repository - one per project, project developers will be able to pull from this repository (and of course ...
6
votes
5answers
3k views

Git rebase: conflicts keep blocking progress

I have a git branch (called v4) that was made from master just yesterday. There were a couple of changes to master that i want to get into v4. So, in v4, i tried to do a rebase from master, and one ...
6
votes
1answer
447 views

Git: restore diverged repository after failed rebase

I ran a git pull --rebase, and aborted this after fixing several merge-conflicts using git rebase --abort. Before the attempted rebase, git status told me: "Your branch is ahead of 'origin/master' by ...
6
votes
1answer
560 views

git: rewrite history: reorder and merge commits

Current situation: origin/mybranch --- A1 --- B1 --- A2 --- B2 --- A3 --- B3 mybranch I want to clean that history up (A1 to B3), esp. since I have not pushed it anywhere yet and because I want ...
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
1answer
77 views

Why does git rebase require a 3-way merge?

I'm trying to figure out why rebase requires a three-way merge. For instance, if we have A1 - A2 \ B1 And I've checked out B1, and I want to perform: git rebase A2 why does git merge A2, ...
5
votes
2answers
102 views

Pull, rebase, push, in one command (or just a few)

When using Git, I often find myself doing the following when working in master: # work work work... $ git checkout -b temp $ git commit -a -m 'more work done' $ git checkout master $ git pull origin ...
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?
5
votes
1answer
147 views

git: How to rebase all commits by one certain author into a separate branch?

I'm using some code for which no SCM is used+ and receive occasional updates in the form of all project files although only some of them have been changed only a bit. Up till now I just put my own ...
5
votes
1answer
119 views

How can multiple people contribute to resolving conflicts during a large DVCS rebase operation?

A rebase of a very long-lived topic branch can be quite painful and take hours or days of work for one person. How can a second (or third) person contribute to the rebasing effort? Is there some tool ...
5
votes
1answer
458 views

Does git's -X “theirs” not handle new/deleted file conflicts?

Following on the scenario from this question, I'm performing a git rebase -s recursive -X theirs etc... and am surprised to be stopped with the following types of conflicts: added by them deleted by ...
5
votes
1answer
319 views

How do I use git rebase -i after git merge without messing things up?

I have the following situation: I made some commits to my local repository, and then a huge merge of another branch (~150 commits) into the master - it had a lot of conflicts in it. Now, I want to ...
5
votes
2answers
2k views

Subversion rebase?

I find this way easier to merge branches and less conflicts: Copy trunk to a new branch, merge it with feature branch/s. When things done, merge the new branch back to the trunk. This technique is ...
5
votes
3answers
712 views

How to rebase one Git repository onto another one?

I had one Git repository (A) which contains the development of a project until a certain point. Then I lost the USB stick this repo A was on. Luckily I had a backup of the latest commit, so I could ...
5
votes
2answers
807 views

Redoing Commit History in GIT Without Rebase

Since asking my last question which turned out to be about rebasing with GIT, I have decided that I don't want to rebase at all. Instead I want to: Branch Work work work, checking in and pushing at ...
5
votes
2answers
466 views

Git: How to commit into SVN branch after rebase?

I have a problem with a SVN branch. I made a checkout of it with git checkout -t -b stable svn/stable. Then I did a merge with git rebase master. After that I tried to commit the merge changes into ...
5
votes
1answer
2k views

svn rebasing and history lost

We currently have 2 branches: /repo/branch/current_version /repo/branch/next_version current_version is a branch where all developers currently works. We starting a next version and created ...
5
votes
4answers
2k views

How to efficiently rebase and push a local git branch?

we're using a central git repository which I've cloned and I'm working on a local branch. When I want to make my changes available in the central repository, I have to issue the following commands ...
4
votes
1answer
216 views

In my bash prompt, $(__git_ps1) is telling me something is wrong, but what?

I've hacked my bash prompt to (in theory) tell me what git branch I'm currently in. But the output indicates that something's wrong: 22:07 (seesaw|REBASE-i) infwb $git branch * master wkg Here's ...

1 2 3 4 5