Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filter git log to show only my changes

How can I filter the git log to show only my changes (excluding the changes committed by other developers)?

like image 552
Veera Avatar asked Dec 26 '11 09:12

Veera


1 Answers

You can filter the log by the author for example, so you can filter by your name :

git log --author="YourName" 

or by committer :

 git log --committer="YourName" 
like image 102
aleroot Avatar answered Sep 20 '22 22:09

aleroot