I have this directory structure
./bin/<java class files>
./sometool/bin/<files for the tool>
...as well as some other files and directories.
It seens that if I want to avoid tracking the java class files, I should add this to the .gitignore file:
bin/
However, it appears that this also ignores the path ./sometool/bin
Is that correct, and if so, how do I get the behavior I want.