ユーザーが変更をチェックインおよびチェックアウトできるように、git リポジトリをサーバー リポジトリとしてセットアップしようとしています。
ローカル リポジトリとリモート リポジトリの両方が 1 台のマシン上にあるように、poc を実行しようとしています。
リポジトリを(リモートサーバーリポジトリとして)作成するために行ったことは次のとおりです。
- GIT Guiを使用してリポジトリを作成しました(現在、.gitフォルダーを含むディレクトリがあります)。
- コマンドgit --bare init --shared myRepo.gitを実行して、リポジトリにプッシュできるようにします
- これで、Windows 共有とセキュリティを使用して myRepo.git フォルダーを共有しました。
- そして、この共有フォルダーをネットワーク ドライブ z にマッピングしました。
場所 d:/myrepository に、GIT Gui を使用してリポジトリ (サーバーにチェックインおよびチェックアウトするすべてのマシン上にある local ) を作成しました。
ここで、私の中の新人GITユーザーが写真に登場します。意味があるかもしれないし、意味がないかもしれないさまざまなことを試しました。私が試したことが正しいか間違っているか、また解決を手伝っていただけるかどうか教えてください。local(myrepository) で試したものは次のとおりです。
$ git clone \\z:\myRepo.git
Cloning into 'myRepo'...
ssh: \\z: no address associated with name
fatal: The remote end hung up unexpectedly**
$ git clone file:///z:\myRepo.git
Cloning into 'myRepo'...
fatal: 'z:myRepo.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly**
$ git clone file:///myRepo.git
Cloning into 'myRepo'...
fatal: 'C:/Program Files/Git/myRepo.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly**
$ git clone git@\\z:\myRepo.git
Cloning into 'myRepo'...
ssh: \\z: no address associated with name
fatal: The remote end hung up unexpectedly**
$ git clone ssh://git@\\z:\myRepo.git
Cloning into 'myRepo'...
ssh: connect to host port 22: Bad file number
fatal: The remote end hung up unexpectedly**
$ git clone ssh://z:\myRepo.git
Cloning into 'myRepo'...
ssh: connect to host port 22: Bad file number
fatal: The remote end hung up unexpectedly**
$ git clone ssh://z:\myRepo.git
Cloning into 'myRepo'...
ssh: connect to host port 22: Bad file number
fatal: The remote end hung up unexpectedly**
$ git clone \\z:\myRepo.git
Cloning into 'myRepo'...
ssh: \\z: no address associated with name
fatal: The remote end hung up unexpectedly**
$ git clone ssh://git@172.16.70.177/git1/myRepo.git
Cloning into 'myRepo'...
ssh: connect to host 122.16.30.127 port 22: Bad file number
fatal: The remote end hung up unexpectedly**
それを機能させるために何をする必要があるか教えてください。
ありがとう、マヤンク・バトラ