Considering that HEAD
refers to my current branch (which isn't necessary master
), how would I list all versioned files of a given directory (without the full recursive content)?
What I have tried:
I did play with git log
(as in "git -> show list of files changed in recent commits in a specific directory", or "How can I search Git branches for a file or directory?"), but somehow it always gives me too much details.
I just need the list of versioned files directly under one directory.