git 팀 페치가 git forking에서 무엇을하는지 혼란 스럽습니까? 나는이 어딘가에서 명령을 보았다."git team-fetch"명령은 git에서 무엇입니까?
이 명령은 branch1 코드를 NewBranch으로 가져 오는 명령입니까?
git team-fetch xyz branch1:NewBranch
git 팀 페치가 git forking에서 무엇을하는지 혼란 스럽습니까? 나는이 어딘가에서 명령을 보았다."git team-fetch"명령은 git에서 무엇입니까?
이 명령은 branch1 코드를 NewBranch으로 가져 오는 명령입니까?
git team-fetch xyz branch1:NewBranch
~/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
감사합니다 @DieselPower :) –
이 명령은 어디에서 왔습니까? 이게 이상한 확장팩인가요? –
그것은 특정 프로젝트이며 sarvesh와 같은 플랫폼에서 작업하고 있습니다;) 그래서이 질문은 stackoverflow에 질문해야합니다, 그것은 특정 대화방에서 물어야한다;) – DieselPower
'git'의 어떤 버전을 사용하고 있습니까? 'git team-fetch'는 내가 말할 수있는 한 유효한 명령이 아닙니다. 아마도 귀하의 컴퓨터에 별명이 있습니까? -'git config --get-regexp^alias \ .'를 사용하여 모든 별칭을 표시 할 수 있습니다. –
v2.6.2를 사용 중이고 git config --get-regexp^alias \를 실행하려고합니다. 그것은 나를 보여주는 오류 : 잘못된 인자 수 –