Re: [PATCH] git-revover-tags-script

2005-07-17 Thread Eric W. Biederman
Junio C Hamano [EMAIL PROTECTED] writes: [EMAIL PROTECTED] (Eric W. Biederman) writes: First pass at a script to dig through .git/objects and find dangling tags. It likely has a lot of weird limitations, I don't know if it will work with packs, and the policy it implments is pretty stupid,

Re: [PATCH] git-revover-tags-script

2005-07-17 Thread Junio C Hamano
[EMAIL PROTECTED] (Eric W. Biederman) writes: What we care about are the tag objects, those are the only kind that are verifiable and usable remotely. Now that I know we do not pull tags currently with any of the optimized transports, I would suggest taking the list of commit objects we

Re: [PATCH] git-revover-tags-script

2005-07-17 Thread Eric W. Biederman
Junio C Hamano [EMAIL PROTECTED] writes: [EMAIL PROTECTED] (Eric W. Biederman) writes: What we care about are the tag objects, those are the only kind that are verifiable and usable remotely. Now that I know we do not pull tags currently with any of the optimized transports, I would

Re: [PATCH] git-revover-tags-script

2005-07-17 Thread Eric W. Biederman
Junio C Hamano [EMAIL PROTECTED] writes: [EMAIL PROTECTED] (Eric W. Biederman) writes: What we care about are the tag objects, those are the only kind that are verifiable and usable remotely. Now that I know we do not pull tags currently with any of the optimized transports, I would

Re: [PATCH] git-revover-tags-script

2005-07-17 Thread Eric W. Biederman
Junio C Hamano [EMAIL PROTECTED] writes: [EMAIL PROTECTED] (Eric W. Biederman) writes: Actually looking a little deeper unless I have misread the code git-fetch-pack at least will only ask for commit objects so git fetch will never return a tag object. I thought so but then I tried it and

[PATCH] git-revover-tags-script

2005-07-16 Thread Eric W. Biederman
First pass at a script to dig through .git/objects and find dangling tags. It likely has a lot of weird limitations, I don't know if it will work with packs, and the policy it implments is pretty stupid, but it is a sane start and should keep people from needing to rsync anything except the

Re: [PATCH] git-revover-tags-script

2005-07-16 Thread Junio C Hamano
[EMAIL PROTECTED] (Eric W. Biederman) writes: First pass at a script to dig through .git/objects and find dangling tags. It likely has a lot of weird limitations, I don't know if it will work with packs, and the policy it implments is pretty stupid, but it is a sane start and should keep