我们要做的是关闭rebase 和 fast-forward 在pull 的表现,可运行如下代码解决当前分支问题:
git config pull.rebase false
git config pull.ff false
git pull 报错:Not possible to fast-forward aborting 的解决办法
最新推荐文章于 2025-03-10 15:33:56 发布
我们要做的是关闭rebase 和 fast-forward 在pull 的表现,可运行如下代码解决当前分支问题:
git config pull.rebase false
git config pull.ff false