git-chat
git-chat copied to clipboard
Spurious merge conflicts.
A couple options come to mind:
- Try using
git commit --allow-empty, with no actual content changes to avoid spurious merge conflicts.- You may need to configure the repo to prevent rebasing though as by default
git rebasekvetches about empty commits. - You could also do a
git fetchthen agit rebase --keep-emptyto get around the problems there of course, but that seems.
- You may need to configure the repo to prevent rebasing though as by default
- Use
git fetchfollowed bygit merge --strategy=ours.
I don't really intend to maintain this repo, but that stuff is helpful, thanks.