Reputation: 13739
Our trunk is called "master" and I've done a rebase
though there is a file "conflict" on the very last line:
Removed:
}
Added:
}
How do I force GIT to pull just the "conflicted" file to overwrite the local copy so I can do a clean rebase
? I do not want to blindly overwrite everything or lose untracked files.
Upvotes: 0
Views: 64
Reputation: 942
You just have to git rebase --skip
to skip that patch or
You resolve it and then git add <path>
the file followed by a git rebase --continue
.
Upvotes: 1