Using GIT? Quick tip of the day: Add the line below to the [alias] section of your .gitconfig file (you should find it in your home directory). This will let you quickly list all the branches available for a repo.
brl = branch --list --all
Save the file, and try the following command in a GIT window:
git brl
You should see a list of all available branches for the repo, both remote and local, with an asterisk marking the branch you currently have checked out:
