问题
I'm trying to script rebasing and my script will take different paths depending on if the rebase results in any conflicts.
Is there a way to determine if a rebase would result in conflicts before executing the rebase?
回答1:
At the time of writing (Git v2.6.1 v2.10.0), the git rebase
command offers no --dry-run
option. There is no way of knowing, before actually attempting a rebase, whether or not you're going to run into conflicts.
However, if you run git rebase
and hit a conflict, the process will stop and exit with a nonzero status. What you could do is check the exit status of the rebase operation, and, if it is nonzero, run git rebase --abort
to cancel the rebase:
git rebase ... || git rebase --abort
回答2:
If you just want to see if the rebase would be successful but then you want to "roll back," you can alway reposition the branch tip back to the original commit. Just tag or make a note of the original SHA.
Or perhaps easier, create a new temporary branch in which to "stage" the rebase:
git checkout your-branch
git checkout -b tmp
git rebase other-branch
If it was successful but you want to "roll back," your-branch
is untouched. Just git branch -D tmp
and you're back to where you started from.
If there were conflicts and you did some work to resolve them and you now you want to keep the rebase, just reposition your-branch tip to tmp
(and then git branch -D tmp
).
回答3:
I suspect that git rebase ... --dry-run
is not possible, for the following reason.
When you're doing a git rebase
, git will rollback to the starting point, then incrementally apply patches for each commit to bring the branch up to date. If it hits a conflict, it will stop & wait for you to resolve the conflict before continuing. The path that the rebase takes after that conflict depends upon how you resolve the conflict - if you resolve it a certain way, that might introduce (or eliminate) later conflicts.
Thus, git rebase ... --dry-run
would only be able to give you the first conflict - reports of later conflicts will depend upon how that first conflict is resolved.
The only way I can think of doing this would be via git diff
between the current position and the last commit in the branch you're rebasing to. But that won't really give you what you're looking for - you really just need a list of conflicting changes between the two points. There might be a way to do it with git diff
, but it's not a normal patch.
回答4:
You still can do git rebase, play with it as you want, than recover all the changes from before.
Assuming you have done your rebase of some branch into the master
, and you don't like it:
git reflog -20
- gives you last 20 positions of your HEAD with a little descriptiongit checkout <the_branch_name>
- places your HEAD on the branchgit reset --hard <old_sha1_found_in_reflog>
- places your HEAD and branch on the old ref, this way you can recover old branch.
There are some mechanics to understand here:
- You NEVER delete anything in git, not with commands, anyway. Its the garbage collector that comes through and deletes unreferenced branches (default 3 months). So your branch, from before the rebase, still exists.
- Same goes for the on same branch rebase, its just a new tree rewritten next to the old one.
- All the history of
rebase
and your other on HEAD manipulations is written in thereflog
- You can use
@{N}
annotations fromreflog
So, nothing is lost after the rebase
, you just have to know how to find and recover it.
For example you can place yourself a tag before the rebase
than revert to it or delete it. it evades you all the SHA1 research step.
来源:https://stackoverflow.com/questions/29517440/is-there-some-kind-of-git-rebase-dry-run-which-would-notify-me-of-conflicts