@wahVinci Great tip! If I may add a couple more, useful ones,
8. git log --oneline --grep 'foo'
get commits that have 'foo' in their log messages.
You can even use a regex string to match patterns.
+
8. git log --oneline --grep 'foo'
get commits that have 'foo' in their log messages.
You can even use a regex string to match patterns.
+
@wahVinci 9. git log --oneline --since='2 months ago' --until='1 month 25 days ago'
get commits that are made since 2 months ago, until 1 month and 24 days ago.
You can specify dates in multiple formats, and get the most out of your git log.
get commits that are made since 2 months ago, until 1 month and 24 days ago.
You can specify dates in multiple formats, and get the most out of your git log.
Loading suggestions...