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 を使ってプログラムのバージョンを管理する初心者ですが、Mac 用の GitHub のようなものを見つけて簡単に使用できます。Linux サーバー構成ではどうすればよいですか? http://rogerdudler.github.io/git-guide/ ファイルをサーバー に公開するには? ありがとうございました!

4

1 に答える 1

0

エラーメッセージは、非裸のリポジトリ、つまり、プッシュできる「中央」リポジトリとして簡単に機能できるようにするためにpush(で) 作成されたリポジトリではなく、通常のリポジトリにしようとしていることを示しています。git init --bare

git の使用を開始する方法についてさらに詳しいガイダンスが必要な場合は、 初心者向けの Git: The definitive practice guideの質問をご覧ください。

于 2013-06-08T08:43:48.867 に答える