我想将我对JBoss配置的本地修改存储在git中。为此,我设置了以下结构:
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
local
是git仓库,应该是“起源”。我的想法是,一旦有更新可用,我希望能够轻松地更新我的JBoss发行版。我想把所有对分布式JBoss包的本地修改存储在git中。
所以,目前我是这样做的:
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
到目前为止一切顺利,我所有的本地修改都在那里我想要的地方。
然而,一旦我有了本地修改,并想将它们返回到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/'
我该怎么办?任何帮助都非常感谢!
编辑
这就是我所做的,它解决了这个问题:
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
现在,目录~/local
中的分支current
总是最新的,但它没有检查出来,所以我可以推到它。
7条答案
按热度按时间nsc4cvqm1#
Pushing用于裸回购。对于非裸回购,您应该将其拉入。
如果无论如何都要强制执行此操作,可以按照错误消息所述,将receive.denyCurrentBranch设置为ignore。SSH到您要推送的存储库的位置,然后运行:
qfe3c7zg2#
已 checkout 远程站点的主分支。如果您可以访问远程存储库,请 checkout 任何其他分支,然后从您的存储库推送。
kq0g1dla3#
创建原始(本地)存储库作为裸存储库(即git init --bare),或者 checkout 一个不是master的分支。
9jyewag04#
或,
初始化远程项目时,使用
qaxu7uf25#
我设法通过从“current”中的“local”中提取而不是从“local”中推到“current”来解决这个问题。
iyzzxitl6#
我知道这是一个很老的问题,但是如果你使用git init --bare,注意'GIT_DIR=.',如果在推送后使用钩子来 checkout 仓库,它将被设置为一个空的仓库钩子。在你的钩子例程中使用'export GIT_DIR=.git'来让它识别你拉入的仓库。
jw5wzhpr7#
我的孤立处境
我不是先推到origin,而是将分支拉到同一网络上的其他机器。
最终,问题源于在计算机A(原始存储库源)上 checkout 了相同的分支。我切换到“开发”和中提琴,问题解决了。