Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这听起来可能是一个奇怪的问题,但我想知道如何找到我系统上的某个 git 存储库的来源。
事实上,我有许多来自各种 git 源的 Linux 发行版用于交叉编译,而且我有一个名称非常不清楚的发行版,我已经克隆了一段时间。现在我想知道我从中获得这个项目的这个 git 存储库的来源。我怎样才能做到这一点?是否有为此的 git 命令。
您可以执行以下操作:
更新分支列表:
$ git remote update
获取所有分支的概述 + 显示哪个本地分支跟随遥控器:
$ git remote show origin $ git branch -vv
你可以这样做,查询 git 配置:
git config --get remote.origin.url