The question sounds too trivial. I wished it was. :)
I have recently created an experimental branch called deals_feature.
After a day work, I have commited and pushed the changes back to the server.
I even went to the server and did a git log deals_feature and I can see the latest commit log message on that branch.
And now back to the pc, I am trying to get the latest on that branch.
I did a git branch -a to see make sure I am on the branch:
* deals_feature
master
remotes/origin/HEAD -> origin/master
remotes/origin/deals_feature
remotes/origin/master
But when I do a git pull it seems its pulling from Master instead of the branch.
From .
* branch master -> FETCH_HEAD
Already up-to-date.
What am I missing?
$ git remote show your_remote_name, whereyour_remote_nameis name of your remote. – Nick Kugaevsky Sep 22 '12 at 9:38