I have been doing
git log | grep "chakra" -A3 -B3
for each branch separately.
Is there a simple way to find out all the commits a person made.
I have been doing
git log | grep "chakra" -A3 -B3
for each branch separately.
Is there a simple way to find out all the commits a person made.
You can do
git log --author="chakra" --since=4.days --all
That will give you your commits on all branches for the last 4 days.