git push失败:`拒绝更新签出的分支:refs/heads/master`

and*_*s-h 56 git

我想在git中存储我对JBoss配置的本地修改.为此,我设置了以下结构:

lrwxrwxrwx  1 jboss jboss        19 Jan 24 11:53 current -> jboss-as-7.1.0.CR1b
drwxr-xr-x 11 jboss jboss      4096 Jan 24 12:13 jboss-as-7.1.0.CR1b
-rw-r--r--  1 jboss jboss 108211143 Jan 23 16:02 jboss-as-7.1.0.CR1b.tar.gz
drwxr-xr-x  6 jboss jboss      4096 Jan 24 11:36 local
Run Code Online (Sandbox Code Playgroud)

local是git存储库,它应该是"origin".我的想法是,我希望能够在更新可用后轻松更新我的JBoss发行版.我想在git中存储对分布式JBoss包的所有本地修改.

所以,目前我这样做:

jboss@tpl0:~/jboss-as-7.1.0.CR1b$ git init
Initialized empty Git repository in /opt/jboss/jboss-as-7.1.0.CR1b/.git/
jboss@tpl0:~/jboss-as-7.1.0.CR1b$ git remote add origin ../local/   
jboss@tpl0:~/jboss-as-7.1.0.CR1b$ git pull origin master 
From ../local
 * branch            master     -> FETCH_HEAD
Run Code Online (Sandbox Code Playgroud)

到目前为止一切顺利,我所有的本地修改都在那里,我想要它们.

但是,一旦我进行了本地修改并希望将它们装回local存储库,我就会收到错误:

jboss@tpl0:~/jboss-as-7.1.0.CR1b$ vim standalone/configuration/standalone.xml   
jboss@tpl0:~/jboss-as-7.1.0.CR1b$ git commit -a -m "renamed database to project2_core,   to distinguish from other projects"
[master 3e54f34] renamed database to project2_core, to distinguish from other projects
Committer: jboss <jboss@tpl0.(none)>
 1 files changed, 1 insertions(+), 1 deletions(-)

jboss@tpl0:~/jboss-as-7.1.0.CR1b$ git push origin master 
Counting objects: 9, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 447 bytes, done.
Total 5 (delta 3), reused 0 (delta 0)
Unpacking objects: 100% (5/5), done.
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 t
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing int
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 som
remote: error: other way.
remote: error: 
remote: error: To squelch this message and still keep the default behaviour, se
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To ../local/
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '../local/'
Run Code Online (Sandbox Code Playgroud)

我该怎么办?任何帮助是极大的赞赏!

编辑

这就是我所做的,它解决了这个问题:

cd ~/current
git init
vim .gitignore                   # set up a basic .gitignore file
git add .gitignore
git commit -a -m "initial commit"
cd ~/local
git clone ~/current
git branch -m master current     # rename master branch to 'current'
git branch repo
git checkout repo
Run Code Online (Sandbox Code Playgroud)

现在,current目录中的分支~/local始终是最新的,但它没有被淘汰,所以我可以推进它.

Ili*_*ion 66

推送是用于裸回购.对于非裸露的回购,你应该进入它们.

如果你想强制执行此操作,可以按错误消息的状态进行操作,并将receive.denyCurrentBranch设置为忽略.SSH到您要推送并运行的repo的位置:

git config receive.denyCurrentBranch ignore
Run Code Online (Sandbox Code Playgroud)


小智 60

检查远程站点的主分支.如果您有权访问远程存储库,请检出任何其他分支,然后从存储库中进行推送.


Hie*_*mus 14

创建源(本地)存储库作为裸存储库(即.git init --bare),或签出那里不是主服务器的分支.


Stu*_*ack 13

要么,

初始化远程项目时,使用

git init --bare
Run Code Online (Sandbox Code Playgroud)