I had worked with SVN and it has an option to switch branches like, svn switch branch name. I am not sure whether git requires the same switching to work on another branch. I have 2 branches like 1.0 and 1.1. So far I have worked on 1.0, is git pull origin 1.1 and git push origin 1.1 enough? or should I switch the branch?
Thanks in advance.
The Git command
git checkoutis used to change between branches. This is similar tosvn switch.