一. 准备工作:

[root@guangzhou gittest]# git br
* master
[root@guangzhou gittest]# git chk -b patch-test1 && git chk -b patch-test2
切换到一个新分支 'patch-test1'
切换到一个新分支 'patch-test2'
[root@guangzhou gittest]# git br
master
patch-test1
* patch-test2
#当前提交记录
[root@guangzhou gittest]# git log
commit e92a420301cf7dffccbfc1c3830bbdd3234a25dd
Author: carl <xxxx@qq.com>
Date: Wed Oct 6 08:39:14 2021 +0000 Initial commit
[root@guangzhou gittest]#

新增commit记录

[root@guangzhou gittest]# echo "111" >log.txt
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'log.txt add 111'
[patch-test2 4daba4c] log.txt add 111
1 file changed, 1 insertion(+)
create mode 100644 log.txt
[root@guangzhou gittest]# echo "222" >log.txt
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'log.txt add 222'
[patch-test2 d585699] log.txt add 222
1 file changed, 1 insertion(+), 1 deletion(-)
[root@guangzhou gittest]# echo "333" >> test.txt
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'test.txt add 333'
[patch-test2 43e11e9] test.txt add 333
1 file changed, 1 insertion(+)
create mode 100644 test.txt
[root@guangzhou gittest]# echo "444" >> test.txt
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'test.txt add 444'
[patch-test2 a0d9657] test.txt add 444
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'ceshi.txt add 666'
[patch-test2 164aaab] ceshi.txt add 666
1 file changed, 1 insertion(+)
[root@guangzhou gittest]# echo "777" >> final.txt
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'final.txt add 777'
[patch-test2 9131774] final.txt add 777
1 file changed, 1 insertion(+)
create mode 100644 final.txt

打印新增记录

[root@guangzhou gittest]# git log
commit 91317743d8d805910a835c4bf7169aad8ffa5810
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:25:43 2021 +0800 final.txt add 777 commit 164aaab5a85d79e41997202e7b528ff17557135b
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:22:32 2021 +0800 ceshi.txt add 666 commit 09853f62cdd85d18cecc195d8a7f2e3c9693e7fc
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:21:59 2021 +0800 ceshi.txt add 555 commit a0d9657d5bdcf04530bd16a2d08bbb58135ba10a
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:21:38 2021 +0800 test.txt add 444 commit 43e11e9a983c9c5e5c8735fb94a3c567cb4a80e2
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:21:26 2021 +0800 test.txt add 333 commit d585699ad87c07ed0e52932297ca37b64866e4e8
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:20:45 2021 +0800 log.txt add 222 commit 4daba4ce9415508b579330be2bdde9e5c0c2dc40
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:20:23 2021 +0800 log.txt add 111 commit e92a420301cf7dffccbfc1c3830bbdd3234a25dd
Author: carl <xxxx@qq.com>
Date: Wed Oct 6 08:39:14 2021 +0000 Initial commit
[root@guangzhou gittest]#

二. 使用diff (git diff startCommitId endCommitId > /tmp/xxx.diff):

[root@guangzhou gittest]# git diff e92a420301cf7dffccbfc1c3830bbdd3234a25dd d585699ad87c07ed0e52932297ca37b64866e4e8 > /tmp/patch-diff.diff

[root@guangzhou gittest]# git chk patch-test1
切换到分支 'patch-test1'
[root@guangzhou gittest]# git apply --stat /tmp/patch-diff.diff
log.txt | 1 +
1 file changed, 1 insertion(+)
[root@guangzhou gittest]# git apply --check /tmp/patch-diff.diff
[root@guangzhou gittest]# git apply /tmp/patch-diff.diff
[root@guangzhou gittest]# git ss
# 位于分支 patch-test1
# 未跟踪的文件:
# (使用 "git add <file>..." 以包含要提交的内容)
#
# log.txt
提交为空,但是存在尚未跟踪的文件(使用 "git add" 建立跟踪)
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'patch-test2 log.txt commit'
[patch-test1 5d07cdf] patch-test2 log.txt commit
1 file changed, 1 insertion(+)
create mode 100644 log.txt
[root@guangzhou gittest]# git log
commit 5d07cdf186f5a4bba16fcf36aff02d7cdbf9338f
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:45:59 2021 +0800 patch-test2 log.txt commit commit e92a420301cf7dffccbfc1c3830bbdd3234a25dd
Author: carl <xxxx@qq.com>
Date: Wed Oct 6 08:39:14 2021 +0000 Initial commit
[root@guangzhou gittest]# ls
log.txt README.en.md README.md
[root@guangzhou gittest]# cat log.txt
222

以上可见,patch-test2分支创建的补丁文件/tmp/patch-diff.diff已被成功应用到patch-test1分支。

不过commit信息已丢失。

三. 使用apply:

  git format-patch startCommitId...endCommitId -o /tmp/xxx.patch #生成patch

  git apply --stat  /tmp/xxx.patch #检测path是否可用

  git apply --check /tmp/xxx.patch #检测patch是否可用

  git apply /tmp/xxx.patch #使用patch文件

[root@guangzhou gittest]# git format-patch d585699ad87c07ed0e52932297ca37b64866e4e8...a0d9657d5bdcf04530bd16a2d08bbb58135ba10a -o /tmp/patch-test.patch
/tmp/patch-test.patch/0001-test.txt-add-333.patch
/tmp/patch-test.patch/0002-test.txt-add-444.patch #--stat和--check检测补丁文件是否可用
[root@guangzhou gittest]# git apply --stat /tmp/patch-test.patch/0001-test.txt-add-333.patch && git apply --check /tmp/patch-test.patch/0001-test.txt-add-333.patch && git apply /tmp/patch-test.patch/0001-test.txt-add-333.patch
test.txt | 1 +
1 file changed, 1 insertion(+)
[root@guangzhou gittest]# git apply --stat /tmp/patch-test.patch/0002-test.txt-add-444.patch && git apply --check /tmp/patch-test.patch/0002-test.txt-add-444.patch && git apply /tmp/patch-test.patch/0002-test.txt-add-444.patch
test.txt | 1 +
1 file changed, 1 insertion(+)
[root@guangzhou gittest]# git ss
# 位于分支 patch-test1
# 未跟踪的文件:
# (使用 "git add <file>..." 以包含要提交的内容)
#
# test.txt
提交为空,但是存在尚未跟踪的文件(使用 "git add" 建立跟踪)
[root@guangzhou gittest]# cat test.txt
333
444
[root@guangzhou gittest]# git add .
[root@guangzhou gittest]# git commit -m 'patch-test2 test.txt 333-444'
[patch-test1 8fd4e22] patch-test2 test.txt 333-444
1 file changed, 2 insertions(+)
create mode 100644 test.txt
[root@guangzhou gittest]# git log
commit 8fd4e222eaa2861653e3b5526b87e165380a3202
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:57:27 2021 +0800 patch-test2 test.txt 333-444 commit 5d07cdf186f5a4bba16fcf36aff02d7cdbf9338f
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:45:59 2021 +0800 patch-test2 log.txt commit commit e92a420301cf7dffccbfc1c3830bbdd3234a25dd
Author: carl <xxxx@qq.com>
Date: Wed Oct 6 08:39:14 2021 +0000 Initial commit
[root@guangzhou gittest]#

以上可见,通过apply的补丁文件已成功加入patch-test1分支,同diff一样,commit信息已丢失。

四. 使用am:

  git format-patch startCommitId...endCommitId -o /tmp/xxx.patch #生成patch

  git apply --stat  /tmp/xxx.patch #检测path是否可用

  git apply --check /tmp/xxx.patch #检测patch是否可用

  git am /tmp/xxx.patch #使用patch文件

[root@guangzhou gittest]# git format-patch a0d9657d5bdcf04530bd16a2d08bbb58135ba10a...164aaab5a85d79e41997202e7b528ff17557135b -o /tmp/patch-test2.patch
/tmp/patch-test2.patch/0001-ceshi.txt-add-555.patch
/tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch
[root@guangzhou gittest]# git chk patch-test1
切换到分支 'patch-test1'
[root@guangzhou gittest]# git apply --stat /tmp/patch-test2.patch/0001-ceshi.txt-add-555.patch && git apply --check /tmp/patch-test2.patch/0001-ceshi.txt-add-555.patch
ceshi.txt | 1 +
1 file changed, 1 insertion(+) #这里会报错,需要把已经check的patch使用上
[root@guangzhou gittest]# git apply --stat /tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch && git apply --check /tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch
ceshi.txt | 1 +
1 file changed, 1 insertion(+)
error: ceshi.txt:?????????
[root@guangzhou gittest]# git am /tmp/patch-test2.patch/0001-ceshi.txt-add-555.patch
正应用:ceshi.txt add 555
[root@guangzhou gittest]# git apply --stat /tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch && git apply --check /tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch
ceshi.txt | 1 +
1 file changed, 1 insertion(+)
[root@guangzhou gittest]# git am /tmp/patch-test2.patch/0002-ceshi.txt-add-666.patch
正应用:ceshi.txt add 666
[root@guangzhou gittest]# git ss
# 位于分支 patch-test1
无文件要提交,干净的工作区
[root@guangzhou gittest]# git log
commit 7f6f77e592f5647d870b165baa79862b289b9b88
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:22:32 2021 +0800 ceshi.txt add 666 commit 2acdcd883c856a3947721138b42e731b744ece94
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:21:59 2021 +0800 ceshi.txt add 555 commit 8fd4e222eaa2861653e3b5526b87e165380a3202
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:57:27 2021 +0800 patch-test2 test.txt 333-444 commit 5d07cdf186f5a4bba16fcf36aff02d7cdbf9338f
Author: carl <xxxx@qq.com>
Date: Thu Oct 7 10:45:59 2021 +0800 patch-test2 log.txt commit commit e92a420301cf7dffccbfc1c3830bbdd3234a25dd
Author: carl <xxxx@qq.com>
Date: Wed Oct 6 08:39:14 2021 +0000 Initial commit
[root@guangzhou gittest]# cat ceshi.txt
555
666
[root@guangzhou gittest]# ls
ceshi.txt log.txt README.en.md README.md test.txt
[root@guangzhou gittest]#

以上可见通过am已成功把补丁文件应用,并且保留了commit信息。

GIT打补丁 - patch和diff应用的更多相关文章

  1. 关于git的打patch的功能

    UNIX世界的软件开发大多都是协作式的,因此,Patch(补丁)是一个相当重要的东西,因为几乎所有的大型UNIX项目的普通贡献者,都是通过 Patch来提交代码的.作为最重要的开源项目之一,Linux ...

  2. 补丁(patch)的制作与应用

    命令简介 用到的两个命令是diff和patch. diff diff可以比较两个东西,并可同时记录下二者的区别.制作补丁时的一般用法和常见选项为: diff [选项] 源文件(夹) 目的文件(夹) - ...

  3. Git打补丁常见问题

    Git打补丁常见问题 往往觉得得到某个功能的补丁就觉得这个功能我就已经成功拥有了,可是在最后一步的打补丁的工作也是须要相当慎重的,甚至有可能还要比你获取这个补丁花费的时间还要多.看到好多同行遇到这个问 ...

  4. 内核诊断(二)-- patch 和diff

    patch文件结构 生成patch文件 --diff命令 patch 使用 -- patch命令 3.1 打path 3.1撤销patch 使用举例 4.1 基本命令使用 4.2 内核打补丁 1. p ...

  5. 打补丁patch 命令使用

    打补丁patch 命令使用 http://www.cnblogs.com/huanghuang/archive/2011/07/14/2106402.html patch 命令用于打补丁,补丁文件是使 ...

  6. patch与diff的恩怨

    一.概述 diff和patch是一对相辅相成的工具,在数学上来说,diff类似于对两个集合的差运算,patch类似于对两个集合的和运算.diff比较两个文件或文件集合的差异,并记录下来,生成一个dif ...

  7. 如何用git命令生成Patch和打Patch

    在程序员的日常开发与合作过程中,对于code的生成patch和打patch(应用patch)成为经常需要做的事情.什么是patch?简单来讲,patch中存储的是你对代码的修改,生成patch就是记录 ...

  8. 找不同diff-打补丁patch

    Q:为什么要找不同,为什么要打补丁? A: 在Linux应用中,作为DBA,我们知道MySQL跑在Linux系统之上,数据库最重要的追求就是性能,“稳”是重中之重,所以不能动不动就是换系统或是换这换那 ...

  9. git 的补丁使用方法

    1.生成补丁 format-patch可以基于分支进行打包,也可以基于上几次更新内容打包. 基于上几次内容打包 git format-patch HEAD^  有几个^就会打几个patch,从最近一次 ...

随机推荐

  1. iphdr结构

    包含在/usr/src/linux/include/linux/ip.h 1 struct iphdr { 2 #if defined(__LITTLE_ENDIAN_BITFIELD) 3 __u8 ...

  2. 【转】TCP的三次握手与四次挥手理解及面试题

    转自:https://blog.csdn.net/qq_38950316/article/details/81087809 序列号seq:占4个字节,用来标记数据段的顺序,TCP把连接中发送的所有数据 ...

  3. Ztree 树插件 树节点名称太长的解决方案

    样式允许的情况下 给背景div加滚动条.. 或者使用省略号方法:使用addDiyDom   http://blog.csdn.net/zhengbo0/article/details/17759543 ...

  4. 翻译Go Blog: 常量

    常量 Pob Pike 2014年8月24日 原文 介绍 Go是一门静态语言,它不允许不同数字类型间的操作.你不能将一个浮点数(float64)和一个整数(int)相加,也不能将一个32位整数(int ...

  5. 笔记:如何使用postgresql做顺序扣减库存

    如何使用postgresql做顺序扣减库存 Ⅰ.废话在前面 首先这篇笔记源自于最近的一次需求,这个临时性需求是根据两份数据(库存数据以及出库数据) 算出实际库存给到业务,至于库存为什么不等于剩余库存, ...

  6. elsa core—3.elsa 服务

    在本快速入门中,我们将介绍一个用于设置Elsa Server的最小ASP.NET Core应用程序.我们还将安装一些更常用的activities(活动),如Timer.Cron和sendmail,以能 ...

  7. vue-cli3.x中的webpack配置,优化及多页面应用开发

    官方文档 vue-cli3以下版本中,关于webpack的一些配置都在config目录文件中,可是vue-cli3以上版本中,没有了config目录,那该怎么配置webpack呢? 3.x初始化项目后 ...

  8. Java HashMap工作原理:不仅仅是HashMap

    前言: 几乎所有java程序员都用过hashMap,但会用不一定会说. 近年来hashMap是非常常见的面试题,如何为自己的回答加分?需要从理解开始. "你用过hashMap吗?" ...

  9. 快速模式第三包:quick_inR1_outI2()

    快速模式第三包:quick_inR1_outI2() 文章目录 快速模式第三包:quick_inR1_outI2() 1. 序言 2. quick_inR1_outI2()的处理流程 3. 快速模式第 ...

  10. WPF Prism8.0中注册Nlog日志服务

    无论是Nlog还是Serilog, 它们都提供了如何快速在各类应用程序当中的快速使用方法. 尽管,你现在无论是在WPF或者ASP.NET Core当中, 都可以使用ServiceCollection来 ...