git合并历史提交
背景
以前一直觉得只要pull和push就够了,但合作中总会遇到各种非理想的情况。这时候才发现git其他命令的作用。
现在的情况是,repo是一个远程team维护的,我们需要增加新feature,那么就是一个feature分支了。由于开发中各种修改,本feature分支多次commit。最后,交给远程team review的时候,人家看着乱七八糟的修改历史很蛋疼:很难看懂各种增量修改。其实,对人家来说,我们的改动应该就是增加或者删除。给他们看开发过程的增量反而太乱。于是,人家要求我们将feature分支的提交合并,这样看起来清爽。
一些简单的命令准备
合并分支的命令是rebase
,除此之外,其他的一些命令也应该知晓。
查看commit历史
git log
查看当前状态
git status
添加所有文件
git add .
提交修改
git commit -m "本次提交添加了xxxx"
vim的简单指令:
参阅vim的简单使用
准备一个测试repo
git init test-rebase
cd test-rebase
提交一个文件多次:
vim test.txt
//输入第一次提交。
git add test.txt
git commit -m "1"
vim test.txt
//输入第2次提交。
git add test.txt
git commit -m "2"
vim test.txt
//输入第3次提交。
git add test.txt
git commit -m "3"
查看log:
git log
//////
commit 0353373749d72e53a34c7bdda86d77d7bb3ca6fe
Author: ryan <v-rmiao@expedia.com>
Date: Wed Jul 19 13:23:18 2017 +0800
3
commit acf6d24adc2097fda82d29064e8edfef6355d01d
Author: ryan <v-rmiao@expedia.com>
Date: Wed Jul 19 13:20:37 2017 +0800
2
commit 2169bc5e20386951b19aff32143e74f2da683df2
Author: ryan <v-rmiao@expedia.com>
Date: Wed Jul 19 13:19:42 2017 +0800
1
可以看到有三次提交了。现在我们想要把第2次和第3次提交的内容合并成一次提交。
开始rebase
1. 复制合并前的一次提交的hash
这里就是第一次提交的hash。即2169bc5e2
2. git rebase -i xxx
git rebase -i 2169bc5e2
进入历史提交的编辑页面,此时编辑方式为vim。
pick acf6d24 2
pick 0353373 3
# Rebase 2169bc5..0353373 onto 2169bc5 (2 commands)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
可以看到第2次和第3次的提交消息,并且是从old->new来排序的。我们需要把第3次提交合并到第2次上。使用squash
.
squash
修改第三次提交为squash
,意思是和前一次(第二次)提交合并。
键盘按键j
移动到第二行,然后按a
开始编辑,删除pick
,插入squash
如下:
pick acf6d24 2
squash 0353373 3
# Rebase 2169bc5..0353373 onto 2169bc5 (2 commands)
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
然后,按esc
退出编辑,再按:
,输入wq
保存。
这时候会进入第二个vim页面,这里让我们再次修改commit message的。就是合并后的message。
# This is a combination of 2 commits.
这是合并后的message,以下是之前合并的历史
# This is the 1st commit message:
2
# This is the commit message #2:
3
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Date: Wed Jul 19 13:20:37 2017 +0800
#
# interactive rebase in progress; onto 2169bc5
# Last commands done (2 commands done):
# pick acf6d24 2
# squash 0353373 3
# No commands remaining.
# You are currently editing a commit while rebasing branch 'master' on '2169bc5'.
#
# Changes to be committed:
还是和刚才一样,按o
插入下一行,输入这次合并的message。然后按esc
,按:
, 输入wq
保存并退出。
完事,再次查看log
git log
内容如下:
commit 8f54e6b5643ff26ac967a9e6e6cded68a6c50906
Author: ryan <v-rmiao@expedia.com>
Date: Wed Jul 19 13:20:37 2017 +0800
这是合并后的message,以下是之前合并的历史
2
3
commit 2169bc5e20386951b19aff32143e74f2da683df2
Author: ryan <v-rmiao@expedia.com>
Date: Wed Jul 19 13:19:42 2017 +0800
1
参考
https://git-scm.com/book/zh/v2/Git-工具-重写历史
git合并历史提交的更多相关文章
- git 修改历史提交信息
当你不小心,写错了提交的注视/信息,该如何处理呢.理论上,SCM是不应该修改历史的信息的,提交的注释也是. 不过在git中,其commit提供了一个--amend参数,可以修改最后一次提交的信息. ...
- Git 修改历史提交信息 commit message
修改最近一条提交的消息 git commit --amend 进入vim模式 按字母 o 或者 insert键 开始修改内容 按 esc 推出编辑,最常用的是输入":q"直接退出, ...
- git 合并某个提交commit到指定的分支上
https://blog.csdn.net/anhenzhufeng/article/details/77962943 git checkout master git cherry-pick 62ec ...
- 4.Git基础-查看提交历史
1.查看提交历史 -- git log 使用 git log 可以查看到所有的提交(commit)历史. 1. $ git log 列出所有commit,最新的commit在最上面.会显示每个提交 ...
- Git 基础 - 查看提交历史
查看提交历史 在提交了若干更新之后,又或者克隆了某个项目,想回顾下提交历史,可以使用 git log 命令查看. 接下来的例子会用我专门用于演示的 simplegit 项目,运行下面的命令获取该项目源 ...
- git杂记-查看历史提交
普通查看:git log.输入q退出比较. $ git log commit ca82a6dff817ec66f44342007202690a93763949 Author: Scott Chacon ...
- git log 查看提交历史
文章出处http://blog.csdn.net/wh_19910525/article/details/7468549 git log 查看 提交历史 在提交了若干更新之后,又或者克隆了某个项目 ...
- git学习——查看提交历史
git log可以查看提交历史: 用-p选项展开显示每次提交的内容差异,用-2则仅显示最近两次的更新:git log -p -2 在-p选项后面使用--word-diff选项进行单词层面的对比.这其中 ...
- Git使用四:查看工作状态和历史提交
查看当前的工作状态:git status On branch master:现在位于master分支里面nothing to commit, working tree clean:没有需要提交的文件, ...
随机推荐
- xcode8.3 shell 自动打包脚本 记录
题记 xcode升级8.3后发现之前所用的xcode自动打包基本无法使用,因此在网上零碎找到些资料,将之前的脚本简化.此次脚本是基于xcode证书配置进行打包(之前是指定描述文件.相对繁琐).因此代码 ...
- 定期清空log文件
# auto-del-log.sh #!/bin/shfor i in `find . -name "*.out" -o -name "*.log"`do c ...
- wap网站的优化建设
我们在成功建立wap网站之后,不要觉得一时没有达到自己想要的效果就丢之气之,让其成为垃圾链接,我们既然前期做了大量的工作来建立起来这个网站,一定要坚持耐心的把这个网站培养下去,其实就如同我们栽种一个树 ...
- C#开发移动应用系列(2.使用WebView搭建WebApp应用)
前言 上篇文章地址:C#开发移动应用系列(1.环境搭建) 嗯..一周了 本来打算2天一更的 - - ,结果 出差了..请各位原谅.. 今天我们来讲一下使用WebView搭建WebApp应用. 说明一下 ...
- gradle 使用总结
什么是gradle 书面化解释: Gradle可以自动化地进行软件构建.测试.发布.部署.软件打包,同时也可以完成项目相关功能如:生成静态网站.生成文档等. Gradle是一种依赖管理工具. 它和ma ...
- Safari Private 模式下 localStorage 的问题
现如今好多浏览器都有「隐身模式」,Safari 管这叫「Private Browing」,国内各种牌子的套壳浏览器叫「无痕浏览」.私以为从命名上来说,倒是国内更中文一些. 这种模式下浏览网页踏雪无痕, ...
- 理解Java中的抽象
在计算机科学中,抽象是一种过程,在这个过程中,数据和程序定义的形式与代表的内涵语言相似,同时隐藏了实现细节. 抽象:一个概念或者想法不和任何特定的具体实例绑死. 目录 什么是抽象 抽象的形式 如何在J ...
- Ubuntu发行版升级
从UK 13.10升级到UK 14.10 方法一: 1.sudo apt-get update 2.sudo update-manager -c -d 3.选择upgrade(升级) 方法二 ...
- java IO文件操作简单基础入门例子,IO流其实没那么难
IO是JAVASE中非常重要的一块,是面向对象的完美体现,深入学习IO,你将可以领略到很多面向对象的思想.今天整理了一份适合初学者学习的简单例子,让大家可以更深刻的理解IO流的具体操作. 1.文件拷贝 ...
- 使用ABP打造SAAS系统(1)——环境准备
一.前言 使用ABP也有一段时间了,很多东西是懂非懂,打算试着使用abp来搭建一套SAAS系统,与实际项目相互验证. 主要实现以下目标: 将ABP源码与实际项目相结合,后续可以修改相关源码来支持项目, ...