When I do 'git branch', I get
* (no branch)
and when I do 'git remote', I get
test-mirror
test-dev
test-git
But I don't see how which of my local branch is tracking which remote branches?
I think it must have some mapping between my local branch with remote branch. Otherwise, I don't get anything when I do 'git pull'. But I have done 'git pull', I do see new changes. How can I see the mapping between my local branch and remote branch?
Thank you.