上传一个与MASTER相关的分支(该分支是从MASTER中git clone 得到,相关信息在 .git 文件中)

修改后源码后,在进行如下操作:

git add .
git commit -m "test"  (”test“为分支名)
git branch test(创建分支)
git checkout  test (切换分支)
git push origin test:test

拉取远程分支

git pull origin test

test是分支名