With the git-rebase command, you can take the changes from one branch and replay them on top of another branch.
1
vote
2answers
41 views
Git merging/rebasing strategy for single user development
I'm using git for a c++ project, and I'm the sole developer. In addition to maintaining code history, I'm using git because I want to be able to test a new feature without modifying the original code ...
0
votes
0answers
12 views
Need git rebase -Xignore-all-space to preserve my space
I am doing a rebase of a big change, with a lot of whitespace changes. In order for the merge to work at all, I need -Xignore-all-space.
According to git --help rebase:
ignore-space-change, ...
0
votes
3answers
26 views
git: how to insert a [non empty] commit as the first, shifting all the others?
I want to insert a commit on my master branch that precedes my whole history. I have this software stack that I changed and commited the changed version as the initial commit. I realized my mistake ...
1
vote
0answers
22 views
Keep svn repository in sync with git one
my team mate and I are struggling to get our svn repository in sync with our git one.
We are working on a project and we are requested to share our code on an svn repository (hosted by the ...
0
votes
2answers
34 views
Git - Merge a part of branch commits
How could I merge several, selected commits from branch B into A. I did this but I am not sure if there is a one line solution for this:
git log -p -1 B~~ | git apply
git log -p -1 B~ | git apply
git ...
0
votes
2answers
47 views
git workflow with rebasing
I've worked so far with SVN, GIT and Mercurial, for the latter two the workflow always consisted just of pull / merge / push. Now I'm working on a project where the workflow involves rebasing often ...
0
votes
1answer
47 views
Why does Git sometimes generate meaningless merge conflicts
Quite frequently during rebases, Git generates a merge conflict like the following:
<<<<<<< HEAD
}
=======
}
>>>>>>> f192b7c... My commit description here
...
1
vote
3answers
29 views
rollback a previous commit, but still maintain history
I have the following history in git
A-B-C-D-E-F
I want to rollback the changes that I did in commit E, but wanted the changes that I in commit F. So I did a git rebase like this
git rebase -i D
...
1
vote
1answer
34 views
How to update GitHub forked repo when a pull request was denied?
I forked a repo on GitHub and submitted a pull request. The maintainers of the project rejected the pull request, but we worked out a better solution in a forum. They instructed me to create another ...
0
votes
0answers
9 views
Can I use git rebase with Xcode?
I have found an in-depth discussion of why it is problematic:
http://lists.apple.com/archives/xcode-users/2012/Sep/msg00356.html
Has anyone got a successful workflow for rebasing commits on an Xcode ...
1
vote
2answers
65 views
Is it true that `rebase' leads to a fewer number of conflicts than `merge'?
From time to time I stumble upon a statement that 'git rebase' leads to a fewer number of conflicts than 'git merge', for example here: why does git rebase often have fewer merge conflicts than a ...
1
vote
0answers
29 views
Why does git remote show two commits for the same tag?
When I check the tags for a remote git repository using git ls-remote --tags origin I see the following:
0a8e26c20 refs/tags/v1.0
acd5c5c8e refs/tags/v1.0^{}
I rebased a few commits earlier in ...
1
vote
2answers
40 views
Interactive rebase: modify a recent commit among a bunch of --no-ff merges
The goal
I want to modify a recent commit, using rebase. The magic command is git rebase -i
Let's say you're trying to delete the commit-in-question
First, find out how far back that commit ...
0
votes
2answers
33 views
Fixing a conflict without a mergetool during a rebase?
I'm doing a rebase of master on my branch. There is binary file that conflicts (i expected a conflict) and i just want to accept the one on the branch. If this was a text file i would just open the ...
1
vote
1answer
62 views
Merging several commits into one in Git
I have a single branch git repository, that has ~4000 commits. I want to group the commits according to dates they were created. For example, given the commits below:
abcd 2013-4-1 12:10
abce ...
3
votes
2answers
154 views
git: what is the correct merging or rebasing workflow to modify a maintenance branch and apply those patches to another branch?
Objective: I need to make custom patches to a prior release of an upstream project, and I want to be able to apply those patches to the later version.
Problem: Rebasing from the maintenance branch ...
0
votes
1answer
57 views
Git: how to push changes made to only certain files?
I recently ran into a problem where I need to select a few files to push to remote branches with git. My specific use case here is there is only one file created/modified in every single commit, and I ...
0
votes
1answer
31 views
Git rebase on tags and not individual commits
I have a project where my development branch is 2 tagged releases ahead of my stable branch but I want to remove the first tagged set of changes (which is a series of functionality I no longer want) ...
1
vote
1answer
67 views
What exactly does git's “rebase --preserve-merges” do (and why?)
Git's documentation for the rebase command is quite brief:
--preserve-merges
Instead of ignoring merges, try to recreate them.
This uses the --interactive machinery internally, but combining it
...
2
votes
2answers
40 views
Git rebase - remote deletes a file and local rebase applies changes to another file
Simple scenario:
Remote:
git init
touch a.py && git add a.py && git commit -am "Add a.py"
touch b.py && git add b.py && git commit -am "Add b.py"
Local:
git clone ...
0
votes
1answer
36 views
What exact range of revisions does git rebase --preserve-merges use?
I want to know, if you use
git rebase --preserve-merges
what is the exact list of commits that rebase attempts to play back.
To be more concrete, say I have topic and master branches. Previously ...
1
vote
1answer
49 views
git rebase drop commit does not restore my file
I have a problem after git rebase.
I did git commit, commit contains delete a file. So after that I did git pull and git has history of commits:
... -> My Commit -> Some Git commits came from ...
0
votes
1answer
11 views
How to execute a script on change-sets introduced by old commits?
How can I edit the change-sets introduced by a significant number of old commits in my repository. For example I want to change all appearances of "foo" with "bar" in all my files changed along ...
0
votes
0answers
22 views
Prevent git from rebasing already remote-pushed commits
I want my git repository to not rebase commits that already pushed.
'pre-rebase' hook would be the right choice for this I think,
but I couldn't write the hook code.
Does anybody know that how to ...
0
votes
1answer
54 views
Rebasing all unmerged commits
I often find myself willing to rebase (interactively) all commits of my current working branch that are not merged to master. How do I accomplish this?
A solution based solely on git ...
0
votes
1answer
47 views
Stuck on git rebase while merging diverged branches
I have a local branch with 5 commits not in remote branch while remote branch has 6 commits not in my local branch.
I squashed my local commits into a single commit, now i have 1 commit in local ...
2
votes
1answer
44 views
Git: “propagate” rebase to other branches of the same root
I was wondering if this is possible to "propagate" rebase of the branch. Let's consider the following setup:
branchA *-*-*-*-*-*-<*>
\
branchB *-*-*-*
...
2
votes
1answer
73 views
git rebase upstream/master vs git pull --rebase upstream master
Is there a difference between git rebase upstream/master and git pull --rebase upstream master, and if so, what? The remote could be any remote, not necessarily upstream.
1
vote
1answer
35 views
Rewriting git commit history
Assuming we have a git commit history which looks like:
ZZ [origin/master] A -> B -> C -> D -> E [master]
We want to:
Rewind the history back to before A.
Keep the working directory of E.
...
4
votes
1answer
31 views
Git rebase: Combine non-subsequent commits
by now, I know that there is a nice way how to combine commits and change the commit message by using 'git rebase --interactive'
Having the following situation:
$ git rebase --interactive HEAD^^^^
...
0
votes
2answers
102 views
Issues with Git - rebase / squash
Good morning,
I'm trying to squash a few commits in a git repository.
> git rebase -i HEAD~3
Successfully rebased and updated refs/heads/staging.
A file opens titled git-rebase-todo :
pick ...
1
vote
4answers
92 views
What is evil about announced git push -f while everybody else does git pull --rebase
Let's say
you forked a project on a github
multiple people (less than 5) are working on this fork
the goal is to make a pull request with our changes
After a few commits to our fork, we now want ...
3
votes
1answer
74 views
How do you rename a folder in git and hide it with an interactive rebase?
I have a project and during the course of the project I realized I don't like the name of a directory.
In GIT, we can rename the directory and then commit, but the history will still show the older ...
0
votes
3answers
127 views
Rewrite files in Git history, removing the old history
Ok first off, I know "similar" questions have been asked, and I've scoured them but I cannot seem to get this to work, and I'm wondering if that's because maybe they aren't quite trying to do the same ...
4
votes
2answers
162 views
On conflict, GitHub for Windows puts me in “rebasing” state, how to go from there?
I recently started using GitHub for Windows.
I just got a conflict. On command line I would know how to handle this, but GitHub for Windows choosed to put me in a state I am not familiar with:
...
2
votes
4answers
142 views
can't push to branch after rebase
We use git and have a master branch and developer branches. I need to add a new feature and then rebase the commits to master, then push master to CI server.
The problem is that if I have conflicts ...
3
votes
1answer
301 views
What happend to my these several times git pull --rebase with the error “Your local changes to the following files would be overwritten by merge”
I used git pull --rebase to pull the newest code, while I had one commit that is head of remote origin. But I got error when I tried it first two times, but at the the third time, it worked fine.
The ...
4
votes
1answer
46 views
How do I interactively rebase a git topic branch in isolation without counting commits?
If I have branches master and topic like so:
A -- B -- C -- D (master)
\
W -- X -- Y -- Z (topic)
And I need to manipulate the commits on 'topic' with various fixups, squashes, amends, ...
2
votes
1answer
62 views
Find a common commit in two completely different git trees
The following script tries to find the newest common commit of two branches. The commits should have the same subject, same author and same author date. but commit date and hash are different. Because ...
0
votes
1answer
14 views
Merge many commit into a single one under same branch
Using git, I created a local branch to work in. Then I committed my work progressively. So, I get 3 commit in the same pull request I'd liked to merge them into a single one.
I founded that there is ...
0
votes
1answer
47 views
Rebase feature branch onto another feature branch
I have two (private) feature branches that I'm working on.
a -- b -- c <-- Master
\ \
\ d -- e <-- Branch1
\
f -- g ...
1
vote
0answers
58 views
Git rebase: finding the “next” commit to be rebased?
We have two branches in Git, master and develop. master is being updated constantly by a partner group, and I am constantly rebasing our develop branch onto master, something like this:
#(on develop)
...
2
votes
1answer
63 views
Rebasing a branch that has been branched from
I'm attempting to cut off a part of the history of a repository so I
can graft it back onto the repository with git replace as described
in this article.
The main difference between the case ...
2
votes
1answer
39 views
How to replace a commit with another one in Git rebase?
Say I'm working on a feature in a branch oldFeature. I've done commits A and B1 and sent it for the code review. In B1 I changed some existing files but also added newfile.txt.
In the meantime I ...
2
votes
1answer
77 views
git squash commits for public server, but keep detailed commits for private server
I'm writing an open source library. I'm using two remotes: one private repo for personal testbed and backup, and another one public hosted on github.
On the private repo, this is where I save and do ...
4
votes
1answer
48 views
How can I determine which commits were squashed in git?
I'm writing a script which keeps reference of some commits in a repository, but if some commits gets squashed then references become invalid. I know that there is pre-rebase hook, but no post-rebase ...
3
votes
2answers
84 views
Git: move a commit “on top”
Let's say in master I have a feature disabled.
I work on that feature on branch feature, so I have a special commit $ there that just enables that feature.
Now I want to merge the changes I did in ...
2
votes
3answers
59 views
Rebasing From Stacked Feature Branches
I have two branches I am working from. One is forked from master, and the second is forked from master, but depends on changes in the first branch. I want to submit my first branch for review. After ...
0
votes
2answers
178 views
Git rebase merge conflict cannot continue
I'm trying to rebase 'dev' to catch up to 'master' branch.
$ git checkout dev
$ git rebase master
First, rewinding head to replay your work on top of it...
Applying: Corrected compilation problems ...
0
votes
1answer
73 views
How to pull specific commits in git rebase
My branch is behind by origin by 5 commits.
muralish@vnc9[~/git/task](task-68↓3| ✓)$git status
# On branch task-68
# Your branch is behind 'origin/task-68' by 5 commits, and can be fast-forwarded.
#
...


