I'm trying to make a shell.sh that when run with bash will basically just run command: git ls-files -o -i --exclude-standard
which works perfectly when run from base repo directory, but when i change current directory to *repo/folder and run it from there, there is no output.
so: \
*repo/git ls-files -o -i --exclude-standard -- good \
*repo/folder/git ls-files -o -i --exclude-standard -- no bueno
does anyone know why it does this and how to remediate? Thanks