为什么Git不允许我快进合并了?如果我试图使用——ff-only强制它,我会得到消息“致命:不可能快进,终止。”我意识到合并-no-ff有巨大的优势,但我只是不明白为什么我现在不能-ff-only ?
当前回答
对我来说,这是有效的,改变branch_name与实际的分支:
git pull origin branch_name --no-ff
其他回答
If
git pull
不做的把戏,如果你想合并当前的变化和变化将来自分支从原点拉,然后这样做:-
git merge origin/BRANCH_NAME
之后,解决合并冲突,如果有的话,这一天就结束了。
如果您在本地分支上执行git pull origin master时遇到此情况,请在记事本中打开.gitconfig(通常隐藏在C:\Users\Myname中)并添加这两行
[pull]
ff = no
保存配置并再次尝试git pull origin master
git pull origin main --rebase
git pull --rebase
以上两个命令对我很有用。但唯一的问题是,我在当前分支中也看到了主分支的提交..
如果在未来得到这个git错误,这个解决方案将帮助你
从(development/master/main)导入到本地分支时出现错误: 错误信息:
hint: You have divergent branches and need to specify how to reconcile them. hint: You can do so by running one of the following commands sometime before hint: your next pull: hint: hint: git config pull.ff only # fast-forward only hint: hint: You can replace "git config" with "git config --global" to set a default hint: preference for all repositories. You can also pass --re base, --no-re base, hint: or --ff-only on the command line to override the configured default per hint: invocation. fatal: Need to specify how to reconcile divergent branches.
解决方案: 打开.git配置文件并添加这一行 1)(拉) Ff = no 如果第一步对你不起作用,那么就应用第二步
2)git pull -ff-only或git config -global pull。ff只
如果原始分支被压缩,或者有一个更改破坏了提交历史,如果你不关心本地分支提交历史,你可以重置本地分支
git checkout branchname
git reset --hard origin/branchname
推荐文章
- 为什么我需要显式地推一个新分支?
- 如何撤消最后的git添加?
- Rubymine:如何让Git忽略Rubymine创建的.idea文件
- Gitignore二进制文件,没有扩展名
- Git隐藏错误:Git隐藏弹出并最终与合并冲突
- 了解Git和GitHub的基础知识
- 没有。Git目录的Git克隆
- Git与Mercurial仓库的互操作性
- 忽略git中修改(但未提交)的文件?
- “git restore”命令是什么?“git restore”和“git reset”之间有什么区别?
- Git合并与强制覆盖
- Git拉另一个分支
- 在Bash命令提示符上添加git分支
- 如何更改Git日志日期格式
- git pull -rebase和git pull -ff-only之间的区别