git 提交代码流程:
- git add *
- git commit -m "update code"
- git pull origin 远程目标branch
- (如果有冲突,解决冲突,git commit -m "resolve conflict")
- git push origin 自己分支远程
- 在gitlab或者其他代码管理页面,操作merge
常用git命令:
git checkout -b 创建分支
git branch -a 查看所有分支
git rebase 同步远程仓库所有分支
git remote -v 查看远程分支