git新建分支并推送到远端

版权声明:小妖666个人笔记 https://blog.csdn.net/weixin_38883338/article/details/88696304
// 查看所有分支
git branch -a
// 新建分支
git branch branch_name
// 切换分支
git checkout branch_name
// 推送到远端
git push origin branch_name

猜你喜欢

转载自blog.csdn.net/weixin_38883338/article/details/88696304