I added a second remote by issuing:
git remote add stash ...
However, when I do
git status
It checks for the status of origin/master. How can I issue a git status to check for the status of the second remote, in this case "stash". I tried the following commands, but they still track origin/master:
git status stash/master
git status "stash/master"
Thanks in advance for the input!