Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View all git activity on my local machine

Tags:

git

devops

Is it possible to see all of my recent git activity on my local machine across all of my git repositories? I am generally working on multiple projects with different git hosting solutions (so I can't use GitHub's activity monitor) and I would like to review my recent work for keeping accurate records of what I'm working on.

Thanks!

like image 879
Dan Lucas Avatar asked Dec 07 '25 06:12

Dan Lucas


1 Answers

Im not sure if there is a onestop-shop for all your git activity... I would go into whatever project directories you are worried about and run git log --author=yourName to see your recent changes.

see How can I view a git log of just one user's commits?

like image 166
chrismillah Avatar answered Dec 08 '25 21:12

chrismillah