Is there a way to tell if a file is being tracked by running some git command and checking its exit code?
git
In other words: is git tracking a file?
try:
git ls-files --error-unmatch
will exit with 1 if file is not tracked