git操作远程分支(协同开发)
// 添加远程仓库 $ git remote add joe [email protected]:joe.le/frontend.git // 修改远程仓库地址 $ git remote set-url joe [email protected]:joe.le/frontend.git // 删除远程仓库 $ git remove joe // 重命名远程仓库 $ git rename joe newname // 查看所有仓库地址 $ git remote -v // 查看所用仓库分支(本地+远程) $ git branch -a // 查看本地仓库地址 $ git branch $ git btanch -v $ git branch --list // 查看远程仓库地址 $ git branch -r // 切换其他远程仓库 $ git checkout ship // pull 数据 $ git pull ship
相关推荐
baolen 2020-08-15
炼金术士lee 2020-08-15
huangchunxia 2020-08-07
lljhi0 2020-07-21
huangchunxia 2020-07-08
zhangxing 2020-07-05
ArkShen 2020-07-05
nebulali 2020-07-05
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17