-1

私はファイルを編集し、 git add filename に続いて git commit -m 'message' を編集し、 git push と入力すると、このエラーが発生します。どうすればこれを解決できますか?

Master:disrupreneurs shaunstanislaus$ git push
Counting objects: 11, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 1.71 KiB, done.
Total 6 (delta 3), 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 ec2-user@www.disrupreneurs.org:disrupreneurs
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'ec2-user@www.disrupreneurs.org:disrupreneurs'
4

1 に答える 1

2

git リポジトリには 2 つのフレーバーがあります。

  • ベアベア リポジトリは、開発者間でコードを共有するために使用されます。通常、そこからクローンを作成してプッシュします。

  • ノンベアノンベア リポジトリは、コーディング作業を行うために使用されます。それらは通常、コミットをプッシュするベアレポからのクローンです

プッシュしようとしているリポジトリは裸のリポジトリではないため、チェックアウトされたブランチがあります。新しい git バージョンでは、ベアでないリポジトリの現在チェックアウトされているブランチにプッシュすることはできません。これは、ベアでないリポジトリが他の誰かの作業リポジトリであると想定されているため、他の誰かの作品を上書きする原因となるためです。

したがって、ツリーオプションがあります: - メッセージの内容を実行します:

リモート リポジトリで「receive.denyCurrentBranch」構成変数を「remote: error: 'ignore」または「warn」に設定して、remote: error: その現在のブランチにプッシュできるようにすることができます。ただし、リモート: エラー: 何らかのリモート: エラー: 他の方法でプッシュしたものと一致するようにワーク ツリーを更新するように設定しない限り、これはお勧めできません。

  • ターゲットリポジトリの別のブランチをチェックアウトします
  • または、最善の方法は、裸のリポジトリ ( git clone --bare) を共有リポジトリとして使用することです。
于 2012-12-06T02:46:08.670 に答える