编辑已经存在的补丁文件

时间:2018-10-22 11:58:17

标签: linux git patch yocto

使用编辑器编辑.patch是标准做法吗?

场景

我在Yocto应用程序中使用.patch,在这里我想对要移植到嵌入式设备的存储库进行一些小的更改。

其中一个补丁如下(出于酿造的目的删除了一些详细信息):

From 85987c659762939241e4bdd4223e63eb5997b181 Mon Sep 17 00:00:00 2001

OE ships php5 as php

---
 airmar/airmar.php             | 2 +-
 n2kd/n2kd_monitor             | 2 +-
 send-message/format-message   | 2 +-
 util/list-product-information | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/airmar/airmar.php b/airmar/airmar.php
index ccd4b4d..46ed49d 100755
--- a/airmar/airmar.php
+++ b/airmar/airmar.php
@@ -1,4 +1,4 @@
-#!/usr/bin/php5
+#!/usr/bin/env php
 <?php
 if (!is_array($argv))
 {
diff --git a/n2kd/n2kd_monitor b/n2kd/n2kd_monitor
index f8cfd42..4cb4766 100755
--- a/n2kd/n2kd_monitor
+++ b/n2kd/n2kd_monitor
@@ -233,7 +233,7 @@ for (;;)
         open STDIN, '/dev/null' or die "Can't read /dev/null: $!";
         open STDOUT, '>>', $MONITOR_LOGFILE or die "Can't write to $MONITOR_LOGFILE $!";
         open STDERR, '>&STDOUT' or die "Can't dup stdout: $!";
-        exec 'php5', '/usr/local/bin/n2k.php', '-monitor';
+        exec 'php', '/usr/bin/n2k.php', '-monitor';
       }
       if (!$monitor)
       {
diff --git a/send-message/format-message b/send-message/format-message
index 590a815..2d91185 100755
--- a/send-message/format-message
+++ b/send-message/format-message
@@ -1,4 +1,4 @@
-#!/usr/bin/php5
+#!/usr/bin/env php
 <?
 #
 # Format a particular N2K command
diff --git a/util/list-product-information b/util/list-product-information
index d958ae4..a54a0f2 100755
--- a/util/list-product-information
+++ b/util/list-product-information
@@ -1,4 +1,4 @@
-#!/usr/bin/php5
+#!/usr/bin/env php
 <?php
 #
 # A very limited script engine that sends and receives CAN messages.
-- 
2.17.0

此修补程序仅在发生的地方将php5替换为env php

但是,主代码存储库更改了其中一个文件,其中以前有一个php shebang,如下所示:

   #!/usr/bin/php5

现在几次提交后就没有了。

据我所知,当前补丁将无法工作,因为它将首先寻找要删除的行号和内容,但是会遇到错误,因为它将无法再在文件中找到上述shebang 。 (已经尝试过)

可能的方式

  • 一种清晰的方法是使用更新的代码克隆存储库,并在代码中添加所需的shebang(env php而非php5),然后使用git format-patch -1获得新的补丁程序。恢复。

但是,这会花费很多精力,并且当更改的文件数量超过一定数量时,此过程似乎很繁琐。

使用编辑器编辑补丁是否合理(我确定不是)?还是有一些git功能可以直接修改补丁而不是相应文件?

1 个答案:

答案 0 :(得分:1)

还有另一种使用quilt refresh的方法。简而言之,在使用被子时,将所有补丁复制到名为patches的目录中(IMO可在quiltrc中配置)。

此修补程序目录中名为series的文件存储所有修补程序文件名。当您使用来应用补丁程序时,

quilt push

quilt push -a

您将错误退出。假设您有10个补丁,而第3个补丁无法直接应用,因为您已经在存储库中进行了一些更改。

然后您可以致电

quilt push -f

,它将尝试应用所有可能的位置,并将无法应用的行存储到.rej文件中。输出示例

Applying patch patches/0001-To-apply.patch
patching file README.md
Hunk #2 FAILED at 51.
1 out of 2 hunks FAILED -- saving rejects to file README.md.rej

我的README.md文件中有大块头。

现在,您可以通过比较原始文件来检查并非完全适用的更改。在上述情况下,README.mdREADME.md.rej之间。您可以解决失败的地方并致电

quilt refresh

刷新后,patches中的原始补丁文件将根据更改进行更新,现在您可以继续使用quilt pushquilt push -a

注意:默认情况下,Yocto使用被子,除非使用PATCHTOOL变量进行更改。