克隆
1 | git clone https://github.com/schacon/ticgit |
仓库信息
1 | git remote |
如果需要查看远程仓库更详细的信息,可以使用:
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 | git fetch [remote-name] |
两个差别是:fetch只获取新数据,而pull除了获取新数据,还会把新数据主动与当前工作的分支进行合并。
发布
1 | git push [remote-name] [branch-name] |