|
|
|
|
|
by Nezteb
956 days ago
|
|
I love using the `-G` flag for tracking the history of any occurrence of a given regex across all directories/files. It feels more flexible than `-L`. As an example: git log \
-G "$some_regex" \
--patch \
--stat \
--source \
--all \
--decorate=full \
--pretty=fuller \
-- . ":(exclude)\*.lock"
|
|