2

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.

Chakradar Raju
  • 2,691
  • 2
  • 26
  • 42
  • See http://stackoverflow.com/questions/5113425/how-to-make-git-log-show-all-of-todays-commits and http://stackoverflow.com/questions/4259996/how-can-i-view-a-git-log-of-just-one-users-commits – Joe Apr 29 '13 at 14:02

2 Answers2

7

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.

cexbrayat
  • 17,772
  • 4
  • 27
  • 22
1

Like this:

git log --author="chakra"
Piet van Dongen
  • 1,629
  • 10
  • 13