Git学习笔记 (4) - Git远程操作

克隆

1
git clone https://github.com/schacon/ticgit

仓库信息

1
2
git remote
git remote -v

如果需要查看远程仓库更详细的信息,可以使用:

1
git remote show [remote-name]

添加远程仓库和改名

添加

1
git remote add  <shortname>  <url>

移除

1
git remote rm remote-name

改名

1
git remote rename OldName NewName

获取远程仓库新数据

1
2
git fetch [remote-name]
git pull

两个差别是:fetch只获取新数据,而pull除了获取新数据,还会把新数据主动与当前工作的分支进行合并。

发布

1
2
git push [remote-name] [branch-name]
git push origin master