7

我正在尝试使用添加部分提交

git add -p

我选择了正则表达式选项

/ - search for a hunk matching the given regex

补丁包含这些行

+      AMFObject obj2;
+      AMFObjectProperty p;
+      AVal redirect;

但是git似乎没有找到它

search for regex? redirect
No hunk matches the given pattern
4

1 回答 1

10

问题是这个补丁影响了多个文件。

我需要选择

d - do not stage this hunk nor any of the later hunks in the file

直到到达正确的文件,然后正则表达式才会起作用。

于 2012-11-10T16:14:24.647 回答