git 创建分支

git branch old
git checkout old
git add .
git commit -m "old_test"
git push -u origin old

然后你的项目上的分支中就会多一个叫old的分支

你可能感兴趣的:(git 创建分支)