I think that no, it's impossible: Git does not track directories, and only copes with them because it has to (filesystems on mainstream OSes are hierarchical).
On the other hand, you could use the fact git add
is able to add multiple files in one go:
git add myjunk
or
git add 'myjunk/*'
(notice that I protected the asterisk from the shell).