Git在本地新建分支并上传到远程仓库
1、在本地新建一个分支
git branch test
test为新分支名字
2、切换到新分支
git checkout test
3、将本地分支上传到远程仓库
git push origin test
成功后会提示:* [new branch] test -> test
仓库上可以看到远程分支
git branch test
test为新分支名字
git checkout test
git push origin test
成功后会提示:* [new branch] test -> test
仓库上可以看到远程分支