Tagged Questions
The git-rebase tag has no wiki summary.
12
votes
1answer
2k views
Git rebase fails, 'Your local changes to the following files would be overwritten by merge'. No local changes?
Here is my transcript from trying to merge my bugfix branch onto my master branch in preparation to push it upstream. There have been some upstream changes pulled into master since the bugfix branch ...
11
votes
2answers
958 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 ...
10
votes
3answers
682 views
How can I move commits from the trunk to a branch in Git?
I made a bunch of commits to the master and realized after the fact that they should have been in a branch.
I've looked at various things about rebasing and merging and resetting the master. But no ...
10
votes
2answers
955 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
2answers
2k views
Selecting merge strategy options for git rebase
git-rebase man page mentions -X<option> can be passed to git-merge. When/how exactly?
I'd like to rebase by applying patches with recursive strategy and theirs option (apply whatever sticks, ...
9
votes
5answers
3k views
Change first commit of project with git?
I want to change something in the first commit of my project with out losing all subsequent commits. Is there any way to do this?
(I accidentally listed my raw email, and I'd like to change it as I'm ...
9
votes
4answers
4k views
Undoing a git pull --rebase
Hey I'm new to git and I need to undo a pull, can anyone help?!? So what I've done is...
git commit
git stash
git pull --rebase
git stash pop
this created a bunch of conflicts and went a bit ...
8
votes
3answers
96 views
git - merge difference of branches
I have three branches A, B and C.
B is regularly merged into C.
o---o---o A
/
--------o---o---o---o---o---o B
\ \ \ \
o---o---o---o---o---o C
Now ...
8
votes
2answers
585 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
2k views
How to purge a huge file from commits history in Git?
Occasionally I dropped a DVD-rip into a website project, then carelessly git commit -a -m ..., and, zap, the repo was bloated by 2.2 gigs. Next time I made some edits, deleted the video file, and ...
7
votes
2answers
3k views
How to push/pull Git rebase
I'd like to use git rebase so as to cleanly merge a feature in the master branch (in less commits or at least at the top of the change log). Note that I'm the only one working on the repository.
...
7
votes
2answers
2k views
GIT undo a commit that isn't the most recent, rebase all commits since
Earlier on, I committed some code which at the time seemed like a good idea, but in fact it made things worse. I'd like to remove the change from the history as it is not helpful, and rebase all ...
6
votes
1answer
254 views
What's the difference between `git fetch` then `git rebase`, and `git pull --rebase`?
In reading the git pull page, it gives this stern warning about git pull --rebase:
This is a potentially dangerous mode of operation. It rewrites history, which does not bode well when you ...
6
votes
4answers
507 views
Git rebase loses history, then why rebase?
I've been looking into rebasing with Git over the past couple days. Most of the arguments for rebasing say that it cleans up the history and makes it more linear. If you do plain merges (for example), ...
6
votes
1answer
1k views
Why does git-rebase give me merge conflicts when all I'm doing is squashing commits?
We have a Git repository with over 400 commits, the first couple dozen of which were a lot of trial-and-error. We want to clean up these commits by squashing many down into a single commit. Naturally, ...
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
104 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
189 views
How to avoid git rebase killing merge commits?
Given the following git history:
C-I origin/master
/
A-B-F-G-H master
\ /
D-E branch-b
I want to rebase my local master branch on top of origin/master, but I want to preserve ...
5
votes
1answer
148 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
2answers
1k views
Git - How to fix “corrupted” interactive rebase?
I managed to create a little mess in my local git repository. I was trying to fix a broken commit by using the following instructions. Before running the "git commit --amend" (and after the git rebase ...
5
votes
2answers
992 views
How can I merge two commits into one?
I am trying to merge 2 commits into 1, so I followed “squashing commits with rebase” from git ready.
I ran
git rebase --interactive HEAD~2
In the resulting editor, I change pick to ...
4
votes
2answers
108 views
how to prevent lot of git conflicts when git rebasing lot of commits
Story: in middle of a project my colleague created a new branch from master and started doing her heavy re-factoring work. I created my branch from master and started doing new stuff on the page. We ...
4
votes
2answers
88 views
How can I rebase all my local Git branches (and tags) when upstream has rewritten history?
The maintainer of a specific (embedded) linux kernel repo has modified a bunch of ancient commits in order to clean up the history. As a consequence all commits have a different SHA.
When I git fetch ...
4
votes
2answers
313 views
Recommended git workflow for test and production instances
Although I've been using git for some time now, I still consider myself a n00b, so please don't be too harsh on me.
I'm maintaining a "corporate" mainframe system as two non-identical copies. Let's ...
4
votes
2answers
931 views
Git rebase will not continue after a delete/modify conflict
I'm in the middle of a rebase of my master to a stage branch
git checkout stage
git rebase master
At some time I deleted two files then modified the two files according to GIT.
warning: too many ...
4
votes
1answer
141 views
Complex interactive rebase in one step?
I have two branches in git with this shape.
* fffffff commit f
* ddddddd commit d
* bbbbbbb commit b
| * eeeeeee commit e
| * ccccccc commit c
| * aaaaaaa commit a
|/
* 2222222 base revision 2
* ...
4
votes
3answers
704 views
git rebase. How Do I Use it to Collapse Reams of Ancient Commits
I now have a big honking, bloated, Git repository consuming mucho disk space on GitHub that I want to put on a diet. I need to discard ancient commits made early in the history of the project that are ...
4
votes
1answer
206 views
Strange git merge issue
This is how gitk currently looks in one of our projects:
https://dl.dropbox.com/u/2582508/gitk.png
This apparently, from all we can tell, happened after a single "git merge" was done with a remote ...
4
votes
1answer
1k views
How do I edit the initial commit in a github repository?
I'm working on a repository I forked in which the author took the dirty path and stuffed all his dependencies in the lib/ directory in the initial commit. Normally, if it wasn't the initial commit, I ...
4
votes
2answers
4k views
Change old commit message on Git
I was trying to edit an old commit message as explained here.
The thing is that now, when I try to run rebase -i HEAD~5 it says interactive rebase already started.
So then I try: git rebase ...
4
votes
1answer
198 views
What are the practical consequences of rewriting GIT history?
Our project has been using git for a week or so now, and we're all enjoying it a lot (usíng it in a tight collaborative group turns out to be quite a different git experience). To keep things as ...
3
votes
4answers
67 views
Git push rejected after feature branch rebase
OK, I thought this was a simple git scenario, what am I missing?
I have a master branch and a feature branch. I do some work on master, some on feature, and then some more on master. I end up with ...
3
votes
3answers
59 views
git: branches diverged; how to proceed?
My local tree has diverged from the master:
$ git status
# On branch master
# Your branch and 'origin/master' have diverged,
# and have 7 and 3 different commit(s) each, respectively.
#
nothing to ...
3
votes
2answers
102 views
Is it better to use merge or rebase when two people are on the same remote feature branch and having conflicts that will be dcommitted to svn
My colleague and I are having an vigorous discussion about merge strategies and I'm hoping we can get some information to help resolve it.
The tl:dr is: Should we use merge or rebase when pulling ...
3
votes
3answers
141 views
git: how to re-order (severely) a commit sequence
I'm building a retrospective project history from zip snapshots. I have already built a long branch sequence of commits from snapshots that were to hand. I have now added at the end some more 'found' ...
3
votes
1answer
89 views
Git: regular merge/rebase of long-living bugfix branches to master
Context
We use several git repositories with the same workflow, involving two branches, and are wondering how best to "synchronize" commits from one to the other.
Put simply, our git repositories ...
3
votes
2answers
214 views
Can git rebase completely remove remote history?
As we consider moving from SVN to git at work, a coworker has raised the concern that a malicious or accident-prone developer could use git rebase to delete remote history from our shared repo.
Edit: ...
3
votes
2answers
95 views
git rebase after a big refactor
I have 2 branches, master and featureA. In the featureA branch I have written a bunch of new code in CoolFile.m . The feature isn't done so this code is not yet ready to be merged into master.
...
3
votes
2answers
598 views
git pull --rebase
Start situation (no unpushed changes, > indicates the current branch):
o C [> master][origin/master]
|
o B
|
o A
|
...
After a git fetch the log structure often looks like
o E ...
3
votes
1answer
526 views
Git - Merge vs Rebase for my workflow
I've been doing some reading on how both the git merge and git rebase operations work, and I think I have a very basic understanding of the differences. I've seen the diagrams :-) Despite that, I'm ...
3
votes
2answers
149 views
How can I merge two git commits
I have done a series of commits and now I'm seeing that I would have liked to have 2 commits merged. Not the last two, but a bit further away
My log:
commit 326f35d83963660893d065e480f231b76f052dd2
...
3
votes
3answers
117 views
git: removing changes introduced by a series of bad commits
say i have a git repo, with such commit history: A-B-C-D-E
Now, suddenly i realise, that commits B and C are completely flawed and unnecessary.
Also, say i have the complete freedom to rewrite ...
3
votes
2answers
196 views
How do I squash two non-consecutive commits?
I'm a bit new to the whole rebasing feature within git. Let's say that I made the following commits:
A -> B -> C -> D
Afterwards, I realize that D contains a fix which depends on some new ...
3
votes
2answers
543 views
How to know if there is a git rebase in progress?
When I start a git rebase -i, I can issue commands like git rebase --continue, or git rebase --abort. Those commands only work if a rebase is in progress.
How can I know if there is a rebase in ...
3
votes
1answer
100 views
Limitations on forking from a GIT repo created with GIT-SVN?
Many open-source projects (e.g. django) have GIT mirrors which are, in turn, forked for private or public development. GIT mirrors are kept up to date with git svn rebase. But the Pro Git Book ...
3
votes
4answers
2k views
git rebase, “would be overwritten”, and “No changes - did you forget to use 'git add'?”
git rebase does not appear to work properly in certain cases where a file is added to the repository, then removed from the repository, then added to the working directory (but not the repository).
...
3
votes
1answer
487 views
Why isn't 'git bisect' branch aware?
I'm trying to find the source of a bug that's come up since a commit in the past day on a long lived branch (which will be released much much later) called feature-x.
There's a bug though. I find ...
3
votes
1answer
124 views
Create a git branch from selected commits on another branch
I created a "feature" branch off master and worked for a long while. I then fetched the latest master branch commits and rebased my "feature" branch commits on top of it. Then I merged "feature" ...
3
votes
2answers
389 views
Can tags be automatically moved after a git filter-branch and rebase?
edit The question boils down to "Can git rebase be instructed to rebase tags, too?" But an answer to the original question would also help.
Asking How to prepend the past to a git repository? I ...
3
votes
3answers
2k views
git rebase onto remote updates
I work with a small team that uses git for source code management. Recently, we have been doing topic branches to keep track of features then merging them into master locally then pushing them to a ...