2012-11-10 49 views
6

我想補充的一部分提交使用git的加正則表達式例子

git add -p 

我選擇了正則表達式選項

/ - search for a hunk matching the given regex 

補丁包含這些行

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

但混帳似乎沒有找到它

search for regex? redirect 
No hunk matches the given pattern 

回答

8

問題在於此修補程序影響了多個文件。

我需要選擇

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

,直到達到正確的文件,然後將正則表達式使用。