克隆git存储库后,如何获取存储库文件?
例如)
在“git clone http://sunglim@github.com/asdf/asdf.git”之后
我想知道这个网址(http://sunglim@github.com/asdf/asdf.git)。
我该怎么做?
答案 0 :(得分:12)
你可以使用remote show
,虽然它会问你的密钥:
git remote show origin | grep 'Fetch URL'
答案 1 :(得分:6)
如果你查看.git / config,应该有一个类似于以下的块:
[remote "origin"]
fetch = ...
url = <this is the url you want>
您可以使用
从命令行获取此信息git config --get remote.origin.url
希望得到你想要的东西。