3

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!

Dan Lucas
  • 79
  • 1
  • 4
  • Did a script for this reason https://github.com/ivarprudnikov/my_commit_history Also working on an app that'll do this in the browser https://app.gitactivity.com/ – Ivar May 10 '21 at 11:37

1 Answers1

1

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?

Community
  • 1
  • 1
chrismillah
  • 3,704
  • 2
  • 14
  • 20
  • Yeah, I know that, but for my purposes I want to use it as a reminder / review of work I did...that would require me to actually remember which project i was working on, which is what I would be trying to figure out. – Dan Lucas Apr 27 '15 at 20:06
  • Sorry, you may find this helpful then http://stackoverflow.com/questions/12820167/is-there-a-git-activity-log – chrismillah Apr 27 '15 at 20:07
  • No apologies needed. Thanks for the insight! I might take some time this week to build a solution to this myself. – Dan Lucas Apr 27 '15 at 20:40