显示远程仓库地址
git remote -v
格式:
git remote add [shortname] [url]
样例:pb 指代对应的仓库地址
git remote add pb git://github.com/paulboone/ticgit.git
获取远程仓库数据:
git fetch pb
推送到远程仓库:
git push [remote-name] [branch-name]
git push pb master
查看远程仓库信息
git remote show [remote-name]
git remote show pb
重命名
git remote rename pb paul
删除
git remote rm paul
网友评论