0

就像标题一样,它给我一个 Git 错误消息:

2013-06-08 13:51:35.249 GitHub for Mac Login[1883:707] AskPass with
arguments: (
    "/Applications/GitHub.app/Contents/MacOS/GitHub for Mac Login",
    "root@192.168.1.107's password: " )
2013-06-08 13:51:35.285 GitHub for Mac Login[1883:707] Error reading 
attributes for password: OSStatus 840183217 
Counting objects: 3, done. 
Writing objects:  33% (1/3)
Writing objects:  66% (2/3)
Writing objects: 100% (3/3)   
Writing objects: 100% (3/3), 215 bytes, done.
Total 3 (delta 0), reused 0 (delta 0) 
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 root@192.168.1.107:/var/www/html/repository/  ! [remote rejected]
 master -> master (branch is currently checked out) error: failed to
 push some refs to 'root@192.168.1.107:/var/www/html/repository/'  (1)

我是使用 git 控制程序版本的初学者,我发现类似 GitHub for Mac 的东西可以轻松使用。我应该在linux服务器配置什么?我从 http://rogerdudler.github.io/git-guide/ 如何将文件发布到我的服务器?谢谢!

4

1 回答 1

0

错误消息表明您正在尝试访问push非裸存储库,即普通存储库,而不是创建(使用git init --bare)以使其能够轻松作为可以推送到的“中央”存储库的功能。

如果您想了解更多关于如何开始使用 git 的指导,请查看问题 Git 初学者:权威实用指南

于 2013-06-08T08:43:48.867 回答