git remote

为了便于管理,Git要求每个远程主机都必须指定一个主机名。git remote命令就用于管理主机名。

常用命令

git remote

不带选项,列出所有远程主机

$ git remote
origin

git remote -v

使用-v选项,可以查看远程主机的网址;

$ git remote -v
origin  [email protected]:jquery/jquery.git (fetch)
origin  [email protected]:jquery/jquery.git (push)
  • 上面命令表示,当前只有一台远程主机,叫做origin,以及它的网址;
  • 克隆版本库的时候,所使用的远程主机自动被Git命名为origin。如果想用其他的主机名,需要用git clone命令的-o选项指定;
$ git clone -o jQuery https://github.com/jquery/jquery.git
$ git remote
jQuery
  • 上面命令表示,克隆的时候,指定远程主机叫做jQuery;

git remote show

查看主机的详细信息;

$ git remote show <主机名>

git remote add

添加远程主机

$ git remote add <主机名> <网址>

git remote rm

删除远程主机

$ git remote rm <主机名>

git remote rename

远程主机改名

$ git remote rename <原主机名> <新主机名>

你可能感兴趣的:(git remote)