📜  如何检查 git 存储库链接 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:24:49.852000             🧑  作者: Mango

如何检查 Git 存储库链接 - Shell/Bash

在 Shell/Bash 中,我们可以使用 git remote show 命令来查看 Git 存储库的链接信息。

首先,进入已经克隆的 Git 存储库目录,然后运行下面的命令:

git remote show origin

其中,origin 是默认的远程仓库名称,如有多个远程仓库,可以修改为其他名称。

运行上述命令后,会输出关于远程仓库的详细信息,包括仓库链接、分支信息和最新的提交 ID 等。例如:

* remote origin
  Fetch URL: https://github.com/example/repo.git
  Push  URL: https://github.com/example/repo.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)

可以看到,仓库的链接信息分别在 Fetch URL 和 Push URL 中显示。如果需要修改或添加新的远程仓库链接,可以使用 git remote add 命令,例如:

git remote add upstream https://github.com/example/repo.git

其中,upstream 是新加的远程仓库名称,链接地址为 https://github.com/example/repo.git。

总结:

在 Shell/Bash 中,通过 git remote show 命令可以查看 Git 存储库的链接信息, git remote add 可以新增或修改远程仓库链接。在开发过程中,正确的链接信息可以帮助我们与团队协作和管理代码变更。