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

发布于 2024-12-14 10:11:04 字数 432 浏览 0 评论 0原文

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

例如)

“git clone http://[电子邮件受保护]/asdf/asdf.git"

我想知道网址(http://[电子邮件受保护]/ asdf/asdf.git)。

我该怎么做?

After cloning a git repository, How can I get the repository file?

for example)

After "git clone http://[email protected]/asdf/asdf.git"

I want to know the URL(http://[email protected]/asdf/asdf.git).

how can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

走过海棠暮 2024-12-21 10:11:04

您可以使用remote show,尽管它会询问您的密钥:

git remote show origin | grep 'Fetch URL'

You can use remote show, although it's gonna ask your key:

git remote show origin | grep 'Fetch URL'
贩梦商人 2024-12-21 10:11:04

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

[remote "origin"]
    fetch = ...
    url = <this is the url you want>

您可以使用 Hope 从命令行获取此内容

git config --get remote.origin.url

,以获得您想要的内容。

If you look in .git/config there should be a block similar to the following:

[remote "origin"]
    fetch = ...
    url = <this is the url you want>

You can get this from the command line using

git config --get remote.origin.url

Hope that gets what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文