Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread Konstantin Khomoutov
On Mon, 26 Nov 2012 07:06:35 -0800 (PST) Jeffrey Marans wrote: > I've done a cvs2git conversion of a number of cvs modules and was > unable to exclude the private working branches, PWB*. > I'd like to delete them from the git repos and have tried the > following, but the branches live on regardle

Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread jmarans
Pretty close, big thanks. This is what worked git push git@git:/git/gitroot/oacis/builder :PWB1 To git@git:/git/gitroot/oacis/builder - [deleted] PWB1 On 26/11/12 10:34 AM, William Mizuta wrote: I think that git branch -rD only deletes the local reference to remote branches.

Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread Joe Cabezas
you can use git push : that push in your local branch into the remote branch if you want to delete a branch in , you can do this: git push :< branch_remote > it's like to say: "please, copy nothing from my local to ", and voila, deleted Bye! -Joe 2012/11/26 William Mizuta > I think

Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread William Mizuta
I think that git branch -rD only deletes the local reference to remote branches. If you want to delete the branch in your remote repository, for example PWB1, type git push origin :PWB1 William Seiti Mizuta @williammizuta Desenvolvedor da Caelum On Mon, Nov 26, 2012 at 1:06 PM, Jeffrey Marans