1

1 つのドメインに 2 台のコンピューターがあり、1 台は Linux で、もう 1 台は Windows です。Linux でリモート リポジトリを構築します。その URL は です。このリポジトリを構築するため10.10.10.1/testに使用git init --bareしますが、エラー レポートはありません。

Windows サイトにはローカル リポジトリがあり、既にファイルを送信しています。次に、次のコマンドを指定します。

$ git remote add origin 10.10.10.1/test

そして私はチェックしました:

$ git remote -v
origin 10.10.10.1/test (fetch)
origin 10.10.10.1/test (push)

次に、マスターをオリジンにプッシュしようとします

$ git push origin master

私は得た

fatal: '10.10.10.1/test' 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.

私は同じプロセスでローカルウィンドウを試してみましたGithubが、うまくいきました.私も試してみました. ローカルから 10.10.10.1 に ping を実行でき、フォルダー /test も見つけることができます。次のコマンドを試しましたが、どちらも機能しません。

git remote add origin 10.10.10.1/test
git remote add origin \\10.10.10.1\test
git remote add origin \\\\10.10.10.1\\test
git remote add origin smb://10.10.10.1/test (git doesn't reconize the keyword 'smb')

この場合、どの URL を指定する必要がありますか、または変更する必要がある Linux 側の Samba の設定はありますか? いつもここまで読んでいただきありがとうございます。

ティム

4

0 に答える 0