我有github上的存儲庫分支我想克隆。我可以在URL https://github.com/pmyusername/myrepository克隆主存儲庫(由於數據是私有的,因此不是實際的鏈接)。但是,我無法克隆位於https://github.com/myusername/myrepository/tree/branchname的分支。克隆庫,我只是需要運行:爲什麼我可以克隆主存儲庫但不支持分支?
git clone https://github.com/myusername/myrepository
,但如果我嘗試運行:
https://github.com/myusername/myrepository/tree/branchname
我收到的錯誤:
fatal: repository 'https://github.com/myusername/myrepository/tree/branchname' not found
,但我知道它的存在,因爲我正在複製並粘貼它的網址。這個問題可能與我支付保密費用有關,但我不這麼認爲。有沒有人有任何想法?
如果您已經擁有整個存儲庫,爲什麼需要克隆分支? – BlackVegetable
該分支比儲存庫更遠。存儲庫已過時。 – Philip7899
根據定義,存儲庫包含所有分支。 'master'分支可能已經過時了,但你仍然可以簽出有問題的分支(在git fetch/pull之後)。 – BlackVegetable