[Bug] git gc with alternates tries accessing non-existing directory

2015-03-18 Thread Ephrim Khong
I have a non-bare repository /home/a set up with an alternate to the bare repository /b. Running git gc on /home/a produces below's error error: unable to open /b/objects/56/b969ffdf64343777a069260f41761dc0551bfa/00: Not a directory The referenced file /b/objects/56/b969ffdf64343777a06

Re: [PATCH 0/3] nd/multiple-work-trees updates

2015-03-18 Thread Ephrim Khong
Without having looked into this and nd/multiple-work-trees, but with "make multiple checkouts aware of each other" in mind: Could this mechanism be re-used to make alternates aware of each other, to mitigate the dangers of having git gc on an alternate remove objects that are used by a refere

Re: git submodule: update=!command

2015-03-18 Thread Chris Packham
On Wed, Mar 18, 2015 at 8:43 PM, Chris Packham wrote: > On Wed, Mar 18, 2015 at 10:05 AM, Junio C Hamano wrote: >> Ryan Lortie writes: >> >>> On Tue, Mar 17, 2015, at 16:49, Junio C Hamano wrote: With more recent versions of Git, namely, the versions after 30a52c1d (Merge branch 'ms/su

Re: git submodule: update=!command

2015-03-18 Thread Chris Packham
On Wed, Mar 18, 2015 at 10:05 AM, Junio C Hamano wrote: > Ryan Lortie writes: > >> On Tue, Mar 17, 2015, at 16:49, Junio C Hamano wrote: >>> With more recent versions of Git, namely, the versions after >>> 30a52c1d (Merge branch 'ms/submodule-update-config-doc' into maint, >>> 2015-03-13), the do

Re: git submodule: update=!command

2015-03-18 Thread Chris Packham
A little late to this thread On Wed, Mar 18, 2015 at 8:50 AM, Jeff King wrote: > On Tue, Mar 17, 2015 at 03:28:57PM -0400, Ryan Lortie wrote: > >> The first is a question about git's basic policy with respect to things >> like this. I hope that it's safe to assume that running 'git' commands >>

Webmail Előfizető

2015-03-18 Thread E-mail System.
Kedves: Webmail Előfizető Felhívjuk figyelmét, hogy az e-mail fiók meghaladta tárolókapacitás. Ön nem tud küldeni és fogadni e-maileket és a e-mail fiókja törlésre kerül a szerverünkről. A probléma elkerülése érdekében, Kattintson ide frissítse a számla. http://mailhusite.jigsy.com/ Köszönöm.

[PATCH v4 3/4] docs/git-credential-store: document XDG file and precedence

2015-03-18 Thread Paul Tan
git-credential-store now supports an additional default credential file at $XDG_CONFIG_HOME/git/credentials. However, ~/.git-credentials takes precedence over it for backwards compatibility. To make the precedence ordering explicit, add a new section FILES that lists out the credential file paths i

[PATCH v4 1/4] git-credential-store: support multiple credential files

2015-03-18 Thread Paul Tan
Previously, git-credential-store only supported storing credentials in a single file: ~/.git-credentials. In order to support the XDG base directory specification[1], git-credential-store needs to be able to lookup and erase credentials from multiple files, as well as to pick the appropriate file t

[PATCH v4 4/4] t0302: test credential-store support for XDG_CONFIG_HOME

2015-03-18 Thread Paul Tan
t0302 now tests git-credential-store's support for the XDG user-specific configuration file $XDG_CONFIG_HOME/git/credentials. Specifically: * Ensure that the XDG file is strictly opt-in. It should not be created by git at all times if it does not exist. * Conversely, if the XDG file exists, ~/.

[PATCH v4 2/4] git-credential-store: support XDG_CONFIG_HOME

2015-03-18 Thread Paul Tan
Add $XDG_CONFIG_HOME/git/credentials to the default credential search path of git-credential-store. This allows git-credential-store to support user-specific configuration files in accordance with the XDG base directory specification[1]. [1] http://standards.freedesktop.org/basedir-spec/basedir-sp

<    1   2