On Fri, Apr 22, 2011 at 3:20 PM, Dieter Kaiser <drdieterkaiser at web.de> wrote:
> I have checked out the new repository maxima and I have tried to prepare
> carefully a new commit to the repository.
>
> I have created a local branch 'workspace' and then a second local branch
> 'msize' to work on the function MSIZE. I have merged the changes into
> 'workspace' to check if I get the expected result. In a second step I
> have fetched the changes from 'orgin' and I merged the changes into the
> branch 'master'. At last I have pushed my changes upstream.
>
> Now, I see that my local branches 'workspace' and 'msize' appear on
> sourceforge.net, too. Is there something wrong in my approach. I have
> not expected to see my local branches in the repository.
I usually specify which branches should be pushed to the remote
repository. To push the master branch execute
git push origin master
If you wish to delete the msize branch from the sourceforge repository execute
git push origin :msize
HTH, Andrej