2

Is there a way to see all my git commits globally (not just one repo, all my repos on my computer) in one log?

edit: I've seen this question on StackOverflow, I'm looking for that but for all of my repos.

Community
  • 1
  • 1
Kristian
  • 1,351
  • 1
  • 14
  • 20

2 Answers2

4

Not in git itself, no, since it operates at the level of the repository.

You probably want to look into something like mr, which is a tool to work concurrently with multiple repositories at the same time.

Daniel Pittman
  • 16,733
  • 4
  • 41
  • 34
0

Not without writing your own custom script. Git is designed to work with one repository at a time.

Amber
  • 507,862
  • 82
  • 626
  • 550