チェックアウトアウト作業コピーを持つリモートにプッシュしている場合は、自動的に変更が表示されません。 git
は、変更をリポジトリ(.git
ディレクトリ)にプッシュしています。関連する作業コピーを更新する場合は、post-update
フックに適切なロジックを実装する必要があります。一般的に
、git
もあなたが明示的な設定なしに関連した作業コピーを使用してリモートにプッシュさせません...あなたは、通常のラインに沿ってエラーを参照してくださいになります。これに追加するには
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/lars/repo1
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '/home/lars/projects/administrivia/repo1'
一般的には、 'git init --bare'で作成されたreposにプッシュし、他の人にはそこからプルする必要があります。または、あなたがそれを好きでない場合は、ただ引っ張って決してプッシュしないでください。非裸のレポを押すことは、すべて奇妙で嘘つきです。 – Dougal
http://sitaramc.github.com/concepts/bare.html これは私の問題に対する非常に良い解決策です。 – Eekhoorn
これは古いバージョンのgitバージョンのものでしょうか?私の仕事場はgitバージョン1.5.6.5、私のMacでは1.7.4.4です。 – Eekhoorn