2

//web1/www というパスで共有リポジトリ フォルダーを作成したので、別の PC でフォルダーを作成し、bash を開きました。

$ git clone //web1/www

次に、新しく作成されたレポフォルダーで:

$ git status
# On branch master
nothing to commit, working directory clean

ファイルを追加してから:

$ git add .
$ git commit -m 'new file added'
$ git push origin master

しかし、これが私が以下のエラーを受け取るものです。

$ git push origen master
fatal: 'origen' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

s.ali@WEB2 /d/ketab projects/www (master)
$ git remote -v
origin  //web1/www (fetch)
origin  //web1/www (push)

s.ali@WEB2 /d/ketab projects/www (master)
$ git push origin master
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 257 bytes, done.
Total 2 (delta 1), 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 inconsist
ent
remote: error: with what you pushed, and will require 'git reset --hard' to matc
h
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'.

PS: ワークグループではなくドメインを使用して、Windows 7 ローカル ネットワークを使用しています。

4

2 に答える 2

1

これは、オリジンが完全なリポジトリであるためです。

リポジトリにプッシュしたい場合は、裸のリポジトリ(作業ツリーなし)である必要があります

リポジトリを作成するときは、 --bare フラグを使用します

git init --bare

push コマンドは、作業ディレクトリではなく、内部の git ファイルのみを更新します。つまり、完全なレポにプッシュすると、HEAD (作業ディレクトリ内のチェックアウトされたファイル) は実際には、プッシュした最新のコミットの背後にあります。そのため、git 開発者はこれを許可しないことにしました。

于 2013-01-08T21:02:55.737 に答える
0

git push 発信元マスター

その起源

git push origin master
于 2013-01-08T17:20:15.180 に答える