We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A couple options come to mind:
git commit --allow-empty
git rebase
git fetch
git rebase --keep-empty
git merge --strategy=ours
The text was updated successfully, but these errors were encountered:
I don't really intend to maintain this repo, but that stuff is helpful, thanks.
Sorry, something went wrong.
No branches or pull requests
A couple options come to mind:
git commit --allow-empty
, with no actual content changes to avoid spurious merge conflicts.git rebase
kvetches about empty commits.git fetch
then agit rebase --keep-empty
to get around the problems there of course, but that seems.git fetch
followed bygit merge --strategy=ours
.The text was updated successfully, but these errors were encountered: