Re: [PATCH] howto: document more tools for recovery corruption

2015-04-01 Thread Jeff King
On Wed, Apr 01, 2015 at 03:21:16PM -0700, Junio C Hamano wrote: > Jeff King writes: > > > Long ago, I documented a corruption recovery I did and gave > > some C code that I used to help find a flipped bit. I had > > to fix a similar case recently, and I ended up writing a few > > more tools. I

Re: [PATCH] howto: document more tools for recovery corruption

2015-04-01 Thread Junio C Hamano
Jeff King writes: > Long ago, I documented a corruption recovery I did and gave > some C code that I used to help find a flipped bit. I had > to fix a similar case recently, and I ended up writing a few > more tools. I hope nobody ever has to use these, but it > does not hurt to share them, jus

[PATCH] howto: document more tools for recovery corruption

2015-04-01 Thread Jeff King
Long ago, I documented a corruption recovery I did and gave some C code that I used to help find a flipped bit. I had to fix a similar case recently, and I ended up writing a few more tools. I hope nobody ever has to use these, but it does not hurt to share them, just in case. Signed-off-by: Jef