当前位置:  开发笔记 > 开发工具 > 正文

如何获取我之前克隆的git存储库?

如何解决《如何获取我之前克隆的git存储库?》经验,为你挑选了2个好方法。

克隆git存储库后,如何获取存储库文件?

例如)

在"git clone http://sunglim@github.com/asdf/asdf.git "之后

我想知道URL(http://sunglim@github.com/asdf/asdf.git).

我怎样才能做到这一点?



1> gustavotkg..:

你可以使用remote show,虽然它会问你的钥匙:

git remote show origin | grep 'Fetch URL'


要避免被要求输入密钥,请使用`-n`选项.

2> Dave G..:

如果你查看.git/config,应该有一个类似于以下的块:

[remote "origin"]
    fetch = ...
    url = 

您可以使用命令行获取此信息

git config --get remote.origin.url

希望能得到你想要的东西.

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有