How do I recursively add files by a pattern (or glob) located in different directories?
For example, I'd like to add A/B/C/foo.java
and D/E/F/bar.java
(and several other java files) with one command:
git add '*.java'
Unfortunately, that doesn't work as expected.