From jim
1) get the latest master branch
2) create new branch called e.g. 2345
3) do the work on local
4) push that using "git push origin 2345:2345" (this will make a copy of the branch on remote)
or git push -u origin 2345
[18/06/2015 10:20:13]
James Sims: create new branch called e.g. 2345by typing git checkout -b 2345