1.查看所有分支
git branch -a
2.创建本地test分支
git checkout -b test
3.把本地test分支推送到远程
git push --set-upstream origin test
原文地址:https://www.cnblogs.com/yaoliuyang/p/12271958.html
时间: 2024-12-26 08:19:53
git branch -a
git checkout -b test
git push --set-upstream origin test
原文地址:https://www.cnblogs.com/yaoliuyang/p/12271958.html