使用git merge --squash,让commit变得优雅

阅读本文需要3分钟

情景模拟

我们有三个分支,master,develop以及feature特性分支,假定我们开发时使用的是feature分支,我们来这里查看提交记录
使用git merge --squash,让commit变得优雅_第1张图片
当然,使用idea内置的 Version Control 也能看到
使用git merge --squash,让commit变得优雅_第2张图片

However,我只是想写一句话却commit了3次,就如同为了完成一个功能但是完善了很多地方(bug,逃。。),
如果你不想在合并分支时体现你多次commit记录的话,下面正是你想要找的东西

步骤

  1. 切换分支前,请确保你开发分支是都已commit的
    使用git merge --squash,让commit变得优雅_第3张图片

  2. 切换到你要合并的分支,并拉取最新的代码
    例:希望将分支 feature-1.0.0 的代码合并到 master
    使用git merge --squash,让commit变得优雅_第4张图片

  3. git三连:合并,提交,推送

    # 注意squash前面是两个短杠
    git merge --squash feature-1.0.0
    git commit -m '修复了xxx'
    git push origin master
    # 注:推到GitHub则需要登陆一下
    

    使用git merge --squash,让commit变得优雅_第5张图片

验收

查看提交记录
使用git merge --squash,让commit变得优雅_第6张图片

你可能感兴趣的:(技巧)