摘要: git 创建分支并提交代码 1、查看所有分支 git branch -a 2、查看当前分支 git branch 3、新建一个分支 git branch feature-xx 4、切换到新建分支上面 git checkout feature-xx 5、提交代码到本地缓存区 git add . 6、添 阅读全文
posted @ 2020-05-13 17:18 南瓜壳 阅读(383) 评论(0) 推荐(0) 编辑