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.
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.
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.
Not without writing your own custom script. Git is designed to work with one repository at a time.