2016-06-28 12 views
0

私はgitチームフェッチがgitをフォークするときに何をするのかちょっと混乱していますか? 私はこのようなコマンドをどこかで見ました。gitで "git team-fetch"コマンドとは何ですか?

このコマンドはbranch1コードをNewBranchにフェッチしていますか?

git team-fetch xyz branch1:NewBranch

+0

「git」のどのバージョンを使用していますか? 'git team-fetch'は私が知る限り、有効なコマンドではありません。おそらくあなたのマシンのエイリアスですか? - 'git config --get-regexp^alias \ .'を使うと、すべてのエイリアスを表示することができます。 –

+0

私はv2.6.2を使用していますが、git config --get-regexp^alias \を起動しようとしています。それは私にエラーを示しています:引数の間違った番号 –

答えて

1

〜/ binフォルダには、「git-team-fetch」というスクリプトがあります。

Git enhancement - Fetch branches from other team members repositories 
This script extracts the current URL from origin and tries to find 
the one mapped to a user. e.g. if the user enters for an application repo: 
    git team-fetch user mybranch 
the real git command would look like: 
    git fetch [email protected]/$application.git mybranch 
+0

ありがとう@DieselPower :) –

+0

このコマンドはどこから来ましたか?これはいくつかの奇妙な拡張パックですか? –

+0

これはプロジェクト固有のもので、私はsarveshと同じプラットフォーム上で作業しています;)これは、stackoverflowで尋ねられるべき質問ではないので、特定のチャットルームで尋ねる必要があります。 – DieselPower

関連する問題