I want to show only my commits in gitk. I try to use the command
gitk --author="Eugeniy Maksimov" <path>
gitk shows not only my commits, but also theirs parents. Why? How to avoid this?
I want to show only my commits in gitk. I try to use the command
gitk --author="Eugeniy Maksimov" <path>
gitk shows not only my commits, but also theirs parents. Why? How to avoid this?
© 2022 - 2024 — McMap. All rights reserved.
gitk
adds--boundary
to the arguments it passes togit log
/git rev-list
. But why it does that, and how you might modifygitk
to avoid that without breaking it (if a simple "remove--parents
" breaks it in the first place, which I don't know is true), I don't know. – Sisile