我们的 Git Merge Recursive - 命令语法示例
git merge 与我们的递归策略的正确格式是什么? (不要与我们的 git 合并策略混淆)
http ://www.kernel.org/pub/software/scm/git/docs/git-merge.html
我尝试了很多方法,但似乎不起作用。
git merge foo -s recursive-ours // doesn't work
git merge foo -s recursive ours // doesn't work
git merge foo -s recursive -ours // doesn't work
...
What is the right format for a git merge with a strategy of recursive ours? (not to be confused with the git merge ours strategy)
http://www.kernel.org/pub/software/scm/git/docs/git-merge.html
I tried a bunch of ways and it doesn't seem to work.
git merge foo -s recursive-ours // doesn't work
git merge foo -s recursive ours // doesn't work
git merge foo -s recursive -ours // doesn't work
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
git merge -s recursive -X ours foo
git merge -s recursive -X ours foo