Vinz

List all commits

logo Մι∩z•thedev · Follow Published in Coding · 6 min read · 1 day ago __ 👏65k 💬321 🔖 ⤴️ __

Do you need to provide a time-stamped list of all your commits in a project ?

pix

Do it this way:

git log --pretty="format:%ad %s" --date="format:%Y-%m-%d %H:%M:%S" > commits-list.txt↵

[!TODO]

Scenario Imagine this is not a personal repo but a collaborative multiuser repo.

Question How would I filter the logs for showing only my own commits ?