[Tails-dev] Fwd: [tor-dev] Git users, enable fsck by default!

2016-02-03 Thread sajolida
Shall we do this too? Forwarded Message Subject: [tor-dev] Git users, enable fsck by default! From: Nick Mathewson To: tor-...@lists.torproject.org See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813157 for more information why. The tl;dr here is: * By default Git doe

Re: [Tails-dev] Fwd: [tor-dev] Git users, enable fsck by default!

2016-02-03 Thread Andrew Gallagher
On 03/02/16 12:34, sajolida wrote: > > git config --add transfer.fsckobjects true That fixes it per-repository. To change your user defaults: git config --add --global transfer.fsckobjects true A signature.asc Description: OpenPGP digital signature __

Re: [Tails-dev] Fwd: [tor-dev] Git users, enable fsck by default!

2016-02-03 Thread Daniel Kahn Gillmor
On Wed 2016-02-03 07:34:16 -0500, sajolida wrote: > Shall we do this too? Yes, anyone using git who cares about object integrity should probably set transfer.fsckobjects to true globally. Thanks for raising this here. hopefully we can get this to be the default upstream soon. --dkg

Re: [Tails-dev] Fwd: [tor-dev] Git users, enable fsck by default!

2016-02-04 Thread intrigeri
This should do it (untested): --- a/config/chroot_local-includes/etc/gitconfig +++ b/config/chroot_local-includes/etc/gitconfig @@ -1,2 +1,4 @@ [color] ui = auto +[transfer] + fsckObjects = true ___ Tails-dev mailing list Tails-dev@boum.or

Re: [Tails-dev] Fwd: [tor-dev] Git users, enable fsck by default!

2016-02-12 Thread sajolida
intrigeri: > This should do it (untested): > > --- a/config/chroot_local-includes/etc/gitconfig > +++ b/config/chroot_local-includes/etc/gitconfig > @@ -1,2 +1,4 @@ > [color] > ui = auto > +[transfer] > + fsckObjects = true When I sent my previous email I thought about our personal