git 项目工作流程

1. 克隆项目到本地开发

git clone http://xxx.xx

2. 创建本地项目分之

git branch xxx

git checkout xxx

3. 提交代码到本地仓库

git add .

git commit -m 'feat: 增加新功能' (git commit -m 'fix: 修复xxx' )

4. 检查远端仓库是否有更改

git remote add origin http:xxx.xx 与远程仓库链接

git pull origin master --rebase (--rebase 不会产生merge commit记录, 使commit更清爽)

5. 代码如有冲突,手动解决后执行

git add .

git rebase --continue

git push origin xxx (检查无误后推送至远程仓库)

6. 执行codereview修改意见后执行

git add .

git commit --amend --no-edit (--amend 本次commit 与 上次commit 合并,产生一条commit记录,如修改上次commit记录执行 git commit --amend -m 'feat: xxxx')

git pull origin master --rebase

git push origin xxx -f (-f 强制合并)

7. 如没有修改项,切换到master主分之,合并分之,删除开发分之

git checkout master

merge到主仓库

git branch -D xxx

8. 更新本地代码

git pull origin master --rebase

git push origin master

上一篇:GIT常用指令


下一篇:常用 Git 命令总结