I use a custom git alias `git recent` almost every day. It shows you the the most recent branches you have worked on. This is useful for when you are are trying to find a branch you have worked on recently, but forgot its name.
To use this alias, make an executable file called `git-recent` with the following contents and ensure it is in your `$PATH`
Here's a redacted example of the output looks like
* fc924a7e68 team/name/feature-2 - save - My Name (4 days ago)
2fed1acfac team/name/feature-1 - add test - My Name (3 weeks ago)
4db4d4ac77 main - Remove changes (#22397) - My Name (6 weeks ago)
To use this alias, make an executable file called `git-recent` with the following contents and ensure it is in your `$PATH`
Here's a redacted example of the output looks like