【发布时间】:2011-03-14 09:44:49
【问题描述】:
这是我到目前为止所做的,我会说这个过程在 Ubuntu 9.10 上运行,它可能有不同版本的 git。
server: mkdir ~/git
local: scp -r /../project name@url.com:~/git/
server: cd git
cd project
git init
git add .
git commit -a -m "initial"
local: git clone name@url.com:/../git/project /home/name/project
cd project
capify . (from the ruby gem capistrano)
git add .
git commit -a -m "capified"
git push
当我尝试将其推出时,我收到以下错误消息:
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To ...
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to
【问题讨论】:
-
注意:使用 Git 2.3.0(2015 年 2 月),可以推送到非裸仓库签出分支! (与
config receive.denyCurrentBranch=updateInstead)见my answer below -
上一条评论更正:是
git config receive.denyCurrentBranch updateInstead(不是=)
标签: git