3

次のコマンドラインを使用できることを知っています

git remote add pullorigin git+ssh://root@git-xxx.xxxxx.com:1000/mnt/GITROOT/xxxxx.git 

.git/config を変更し、その構成ファイルの次の内容を取得します。

[remote "pullorigin"]
    url = git+ssh://root@git-xxx.xxxxx.com:1000/mnt/GITROOT/xxxxx.git
    fetch = +refs/heads/*:refs/remotes/pullorigin/*

ただし、私が欲しいのは、フェッチが等しいことです

fetch = +refs/heads/*:refs/remotes/origin/*

ファイルを手動で編集する代わりに、コマンド ラインを使用してフェッチ パラメータを変更する方法はありますか?

どうもありがとう!

4

1 に答える 1

2

これほど簡単ではないでしょうか?

git config remote.pullorigin.fetch "+refs/heads/*:refs/remotes/origin/*"

git fetchおそらく、またはコマンドを探しているのでしょうが、git remoteどちらも見つかりませんでした。

于 2012-11-09T05:02:28.490 に答える