常用Git命令
1、正常提交代码
git fetch -p -----把远程分支拉到本地
git branch -a —查看所有分支
git add .
git commit -m “J需求编号”
git commit -m “EC故障单”
git push
git push origin HEAD:refs/for/develop%r=XXX,r=XXX
2、新建分支
git checkout -b bugfix/test ----创建分支
git pus --set-upstream origin bugfi
原创
2021-02-06 22:14:24 ·
122 阅读 ·
0 评论