如何获取我之前克隆的git仓库?
克隆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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
remote show
,尽管它会询问您的密钥:You can use
remote show
, although it's gonna ask your key:如果您查看 .git/config ,应该有一个类似于以下内容的块:
您可以使用 Hope 从命令行获取此内容
,以获得您想要的内容。
If you look in .git/config there should be a block similar to the following:
You can get this from the command line using
Hope that gets what you want.