Suppose I have the following branches in git:
master
release-2014-11-02-some-long-text
I would like to easily switch between those to, like this:
git checkout devel # checkout to master
git checkout release # checkout to the branch release currently points/aliases to, in this case: release-2014-11-02-some-long-text (I would like to change this alias from time to time)
How can I do that in Git?