1
我有一個文件夾下的三個不同版本庫具有不同名稱的遠程分支:如何顯示的特定的遠程
remote1/branch1
remote1/branch2
remote2/branch1
remote3/branch1
當我想要得到的遠程分支機構,我想從只是一個做具體的遠程分支機構存儲庫,我知道git branch -r
顯示我所有的人,但我想知道如何做只有一個提到的存儲庫的git分支-r?
我試圖git branch -r=remote1
或git branch --remotes=remote1
然而,這是不正確的,不知道是否有辦法做到這一點?
我只有一個目錄,在那個目錄裏我有不同的遠程 存儲庫。
這裏更多的信息:
$ git remote -v
remote1 https://url/rep1.git (fetch)
remote1 https://url/rep1.git (push)
remote2 https://url/rep2.git (fetch)
remote2 https://url/rep2.git (push)
remote3 https://url/rep3.git (fetch)
remote3 https://url/rep3.git (push)