Let's say I have an Eclipse Project which uses versioning control with EGit and is connected with a remote repository git@myrepo.com:git2013
. In my project, under the local branch newstuff
, I create and change some files. Now, I want to push this to a remote branch named newstuff
in my remote repository. But my remote repository only holds a branch master
.
How do I create a new remote branch called newstuff
?
PS: Please do not answer with command-line git commands; describe how to do it in EGit.