📌  相关文章
📜  显示 git 远程 url - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:55:11.747000             🧑  作者: Mango

显示 Git 远程 URL - Shell/Bash

在 Git 中,我们可以使用 git remote 命令列出该仓库所配置的远程仓库名称,而后添加 -v 参数,可以显示每个远程仓库对应的 URL 地址。

git remote -v

此命令将会显示类似于以下的输出:

origin  https://github.com/username/repository.git (fetch)
origin  https://github.com/username/repository.git (push)

其中,origin 是远程仓库的名称,https://github.com/username/repository.git 是它的网址,fetchpush 表示不同的 Git 操作。

如果你想要获取某个特定远程仓库的 URL,可以使用以下命令 :

git config --get remote.origin.url

origin 替换为另一个已配置的远程仓库名称,即可获取此远程仓库的 URL 地址。

以上就是使用 Shell/Bash 显示 Git 远程 URL 的方法。在进行 Git 协作开发时,此命令将会非常有用。