A list of every git command I've ever done

Is there a way to list every git command I have ever run from a specific repository?

git logfor example, just showing all the commits. And not even my commits, but everything for this repo.

+4
source share
1 answer

Not directly with Git.

With the GitHub API, you can view events (even user- executed events) and see if you can get at least pushes from users.

Git, , , gitolite, , Git .

+1

Source: https://habr.com/ru/post/1616511/


All Articles