Git: push 出错的解决 master-> master (branch is currently checkedout)
在使用GitPush代码到数据仓库时,提示如下错误:
[remote rejected]master -> master (branch is currently checkedout)
remote: error: refusing to update checked out branch:refs/heads/master
remote: error: By default, updating the current branch in anon-bare repository
remote: error: is denied, because it will make the index and worktree inconsistent
remote: error: with what you pushed, and will require 'git reset--hard' to match
remote: error: the work tree to HEAD.
remote: error:
...
...
...
这是由于git默认拒绝了push操作,需要进行设置,修改.git/config添加如下代码:
在初始化远程仓库时最好使用 git--bare init
本文介绍了解决Git在推送代码过程中遇到的master->master(branchiscurrentlycheckedout)错误的方法。通过修改.git/config文件并添加特定配置,可以避免Git默认拒绝在被检出的分支上进行更新。
1356

被折叠的 条评论
为什么被折叠?



