是否有可能從github克隆沒有完整的URL的git存儲庫?從github克隆git存儲庫沒有完整的URL
例如:
當我要運行這個命令:git clone https://github.com/foo/bar.git
我想輸入:git clone foo/bar
我在網上看到一個解決方案,但我無法找到它了。
是否有可能從github克隆沒有完整的URL的git存儲庫?從github克隆git存儲庫沒有完整的URL
例如:
當我要運行這個命令:git clone https://github.com/foo/bar.git
我想輸入:git clone foo/bar
我在網上看到一個解決方案,但我無法找到它了。
您需要安裝hub
工具,然後使git
爲hub
的shell別名。
如果你只是想做到這一點使用git
你可以編輯你.gitconfig
文件中加入一個網址別名,像這樣:
[url "<actual url base>"]
insteadOf = <other url base>
比如這個:
[url "https://github.com/"]
insteadOf = gh:
那麼你可以做:
git clone gh:foo/bar.git
它不exacally你所要求的但是不得不安裝另一個命令行工具。
謝謝,這就是我一直在尋找! – mamiu 2014-08-28 09:43:12