上一篇:《vue 阻止点击事件继续传播》
方式: git config --global http.sslVerify false
git checkout -b dev origin/dev
切记: 要先提交完成后才能切分支成功!!!!
切换 仓库地址
git remote set-url origin <new url>
切换到之前的分支: git reset --hard 618a561 // 618a561 分支编号
查看所有分支 git branch -a
新建分支 git branch xxxx
切换分支 git checkout xxxx
创建分支 git checkout -b xxx
创建远程分支 git push origin xxx/xxx
合并分支 git merge xxx
下一篇:《文件夹加入到远程仓库》