I want to execute a command like 'git tag -l' inside a directory /home/user/git/app/ but I am actually in /home/user. How can I do that in bash without changing my working directory?
So NOT:
cd /home/user/git/app && git tag -l
because that actually changes my working directory and have to do 'cd /home/user' again.