git remote -v
git remote set-url origin git@gitlab.huizrd.com:xxx/xxx.git
or
git remote set-url origin http://gitlab.huizrd.com/xxx/xxx.git
当一个分支开发完,远端已经删除分支后,本地分支还存在,时间长了,分支会越来越多,怎么办呢?
git branch -v 查看本地分支版本,分支后携带 “[gone]” 的表示该分支已经在远端删除
git branch -d xxx_xxx_branch(分支名称) 删除本地分支
git remote prune origin 删除远端已经不存在,但是本地的远端分支还存在的分支