有未解决的合并冲突问题
there are unresolved merge conflict Issue
我在 git 扩展上有分支,每次我想推送代码时,他都会显示存在冲突的消息
但没有冲突
如何推送我的代码?
将 git 安装更新到 2.36 版后,我遇到了同样的问题。
因为 git status
在命令 window:
中显示了以下提示
core.useBuiltinFSMonitor will be deprecated soon; use core.fsmonitor instead
我在系统范围内替换了 git 配置:
[core]
useBuiltinFSMonitor = true
和
[core]
fsmonitor = true
错误消失了。
将 git 更新到 2.36 后,我在这上面浪费了整个上午;我没有得到马丁得到的警告,所以没有任何提示。我在 UI 中也有完全空的回购协议——没有分支,没有提交……这对我的血压不利。
在看到 Martin 的回答之前,我刚刚重新安装了之前的版本 (2.33),并且运行良好;暂时坚持下去。
我在 git 扩展上有分支,每次我想推送代码时,他都会显示存在冲突的消息
但没有冲突
如何推送我的代码?
将 git 安装更新到 2.36 版后,我遇到了同样的问题。
因为 git status
在命令 window:
core.useBuiltinFSMonitor will be deprecated soon; use core.fsmonitor instead
我在系统范围内替换了 git 配置:
[core]
useBuiltinFSMonitor = true
和
[core]
fsmonitor = true
错误消失了。
将 git 更新到 2.36 后,我在这上面浪费了整个上午;我没有得到马丁得到的警告,所以没有任何提示。我在 UI 中也有完全空的回购协议——没有分支,没有提交……这对我的血压不利。
在看到 Martin 的回答之前,我刚刚重新安装了之前的版本 (2.33),并且运行良好;暂时坚持下去。