git checkout -b 本地分支名x origin/远程分支名x 拉取远程分支并创建本地分支
git config --global credential.helper store 记住密码
git push origin 本地分支:远程分支
git clone 指定分支:git clone -b 分支名称 项目地址
假设分支名称为test,则:
git clone -b test 项目地址
纯粹是自己边用边写的 如果有错的的地方 欢迎提出改正
git checkout -b 本地分支名x origin/远程分支名x 拉取远程分支并创建本地分支
git config --global credential.helper store 记住密码
git push origin 本地分支:远程分支
git clone 指定分支:git clone -b 分支名称 项目地址
假设分支名称为test,则:
git clone -b test 项目地址
纯粹是自己边用边写的 如果有错的的地方 欢迎提出改正