You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: Make sure the file path does not start with a forward slash (/), as this can cause errors when Git tries to locate the file.
@@ -76,18 +76,20 @@ Note: Make sure the file path does not start with a forward slash (/), as this c
76
76
* `<search-string>`: The string you want to search for in the Content file.
77
77
* `--earliest-commit=<commit>`: (Optional) The earliest commit to begin the search.
78
78
* `--latest-commit=<commit>`: (Optional) The latest commit to end the search.
79
+
* `--working-directory=<path>`: (Optional) The directory where Git commands should be executed. Defaults to the current directory if not provided.
80
+
* `--log-directory=<path>`: (Optional) The directory where the log file and temporary files will be stored. Defaults to the current directory if not provided.
This will search for the string "SearchString" within the specified commit range.
88
+
This will search for the string "SearchString" within the specified commit range, using the specified working directory for Git operations and storing logs and temporary files in the specified log directory.
87
89
88
90
## Output
89
91
90
-
Search Log: A file named search_log.txt is created in the working directory, detailing the commits checked and whether the string was found.
92
+
Search Log: A file named search_log.txt is created in the log directory, detailing the commits checked and whether the string was found. The log directory is also used to store any temporary files generated during the search process.
0 commit comments