是否可以在没有完整URL的情况下从github克隆git存储库?
例如:
当我必须运行时:git clone https://github.com/foo/bar.git
我想输入:git clone foo/bar
我在互联网上看到了一个解决方案,但我再也找不到了。
答案 0 :(得分:3)
您需要安装hub
工具,然后为git
制作hub
shell别名。
答案 1 :(得分:3)
如果您只想使用git
执行此操作,则可以通过添加网址别名来修改.gitconfig
文件:
[url "<actual url base>"]
insteadOf = <other url base>
例如:
[url "https://github.com/"]
insteadOf = gh:
然后你可以这样做:
git clone gh:foo/bar.git
它不是你所要求的,但是可以替代安装另一个命令行工具。