如何查看应用程序的代码,或者如果拥有的只是应用程序的名称(即url),则链接到其github存储库?
问的原因是我有一些应用程序,我不确定它们链接到哪个存储库(其中一些非常相似-如果我可以检查代码库,则可以确定是哪个)
答案 0 :(得分:0)
在存储应用程序的文件夹中,有一个名为 .git 的隐藏文件夹。注意不寻常的前导点;它真的在那里。鉴于此,并假设您在计算机上安装了命令行Git客户端,请执行以下操作。
前述内容产生的报告如下所示。
F:\Source_Code\Visual_Studio\Projects\_Laboratory\JSON_Jam 2019/05/25 14:38:27.98>git remote show origin
* remote origin
Fetch URL: https://github.com/txwizard/JSON_Jam.git
Push URL: https://github.com/txwizard/JSON_Jam.git
HEAD branch: master
Remote branch:
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
F:\Source_Code\Visual_Studio\Projects\_Laboratory\JSON_Jam 2019/05/25 14:38:32.21>
获取URL 和推送URL 通常包含您所需的信息,它们看起来像 https://github.com/txwizard/JSON_Jam.git 。
在上述URL中, txwizard 是我的GitHub登录ID,而 JSON_Jam 是存储库名称。
如果Windows无法识别该命令,则可能需要安装Git for Windows。运行安装程序时,告诉它您想要命令行工具,并且希望它与本机命令处理器 cmd.exe 集成在一起。