1、切换分支到指定的分支
git checkout -b 想要的分支名称
2、然后将从master中clone下来的项目删除,放上自己想要的项目
3、git add .
4、git commit -m ‘描述‘
5、git branch --set-upstream-to=origin/分支 跟踪分支变化
6、git pull
7、git push
原文地址:https://www.cnblogs.com/MyUniverse/p/11331112.html
时间: 2024-10-30 16:54:34