This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GNU C Library master sources branch local_ibm_2.18 created. glibc-2.18-87-g40e9bbd


On 11/16/2013 12:12 AM, Alan Modra wrote:
> On Sat, Nov 16, 2013 at 12:01:33AM -0500, Carlos O'Donell wrote:
>> Alan,
>>
>> Did you intend to push the branches local_ibm_2.18 and ibm_2.18 to sourceware?
>>
> 
> No, I didn't.  git newb at work here..
> 
> I hit them with
> git branch -d -r origin/ibm_2.18
> git branch -d -r origin/local_ibm_2.18
> 
> Hopefully that will squash them.  Sorry for the noise.

That's not enough.

That deletes only your local remote-tracking branch.

To kill the branch on the server you need to do this:
http://git-scm.com/book/ch3-5.html#Deleting-Remote-Branches

Depending on your version of git you can use:
git push origin --delete local_ibm_2.18
git push origin --delete ibm_2.18

You can also delete the local branches you have:
git branch -D local_ibm_2.18
git branch -D ibm_2.18

Then you probably want to follow up with `git remote prune origin'
on your end to sync between the upstream deleted branches and your
own local tracking branches.

Cheers,
Carlos.
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]