📜  git 获取存储库 url - Shell-Bash (1)

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

Git 获取存储库 URL - Shell/Bash

在 Git 中,要获取存储库的 URL 可以使用 git remote get-url 命令。该命令可以用于获取任何已知的远程存储库,例如:GitHub、GitLab 或 Bitbucket 等。

语法
git remote get-url <remote_name>

参数说明:

  • <remote_name>:存储库的远程名称;默认情况下,Git 会使用 origin 作为默认的远程名称。
用法示例

获取存储库 origin 的 URL:

git remote get-url origin

输出结果:

https://github.com/username/repo.git

获取存储库 upstream 的 URL:

git remote get-url upstream

输出结果:

https://github.com/another_user/repo.git
小结

git remote get-url 命令可以方便地获取存储库的 URL,而不必打开 Web 界面。此外,该命令还可用于在远程存储库的本地副本中添加、重命名或删除远程名称。了解更多 Git 命令,在日常开发中可以提高效率。