記錄搜尋
git log -S"#define SAMPLES"
搜尋新增或刪除特定字串或提供 REGEXP 的字串匹配。在這種情況下,我們正在尋找字串 #define SAMPLES
的新增/刪除。例如:
+#define SAMPLES 100000
要麼
-#define SAMPLES 100000
git log -G"#define SAMPLES"
搜尋包含特定字串或字串**匹配的行中的****更改,**以提供 REGEXP。例如: **** **** ****
-#define SAMPLES 100000
+#define SAMPLES 100000000