执行此操作时是否看到错误消息git push
?像这样的东西(假设 git > 1.7.0
)?
$ git push
Counting objects: 5, done.
Writing objects: 100% (3/3), 246 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), 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 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 /home/pfarmer/git-test/git-test
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '/home/pfarmer/git-test/git-test'
基本上默认情况下,您不能推送到非裸存储库。但是您可以做的是 a git pull
,因此请尝试:
cd /home/adnan/workspace/git-test
git pull /home/adnan/Desktop/git-test
你应该看到类似的东西:
$ git pull ../git-test2/
From ../git-test2
* branch HEAD -> FETCH_HEAD
Updating 161aeea..c66b221
Fast-forward
README | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)