On Wed, Jan 6, 2016 at 4:52 AM, Duy Nguyen wrote:
> On Wed, Dec 23, 2015 at 8:34 PM, Michael Haggerty
> wrote:
>> On 12/03/2015 01:35 AM, David Turner wrote:
>>> diff --git a/Documentation/git-init.txt b/Documentation/git-init.txt
>>> index 8174d27..9ea6753 100644
>>> --- a/Documentation/git-ini
On Wed, Dec 23, 2015 at 8:34 PM, Michael Haggerty wrote:
> On 12/03/2015 01:35 AM, David Turner wrote:
>> diff --git a/Documentation/git-init.txt b/Documentation/git-init.txt
>> index 8174d27..9ea6753 100644
>> --- a/Documentation/git-init.txt
>> +++ b/Documentation/git-init.txt
>> @@ -12,7 +12,7
On 01/05/2016 07:03 PM, Junio C Hamano wrote:
> David Turner writes:
>
>> I'm working on the rest now, but wanted to comment on this first. I
>> went ahead and made this change, but I'm not sure I like it. In the
>> git codebase, the concept will continue to be called "backend"; there
>> are al
On Tue, 2016-01-05 at 10:03 -0800, Junio C Hamano wrote:
> David Turner writes:
>
> > I'm working on the rest now, but wanted to comment on this first.
> > I
> > went ahead and made this change, but I'm not sure I like it. In
> > the
> > git codebase, the concept will continue to be called "ba
David Turner writes:
> I'm working on the rest now, but wanted to comment on this first. I
> went ahead and made this change, but I'm not sure I like it. In the
> git codebase, the concept will continue to be called "backend"; there
> are already-accepted patches using that terminology. Having
On Wed, 2015-12-23 at 14:34 +0100, Michael Haggerty wrote:
> On 12/03/2015 01:35 AM, David Turner wrote:
> > git init learns a new argument --refs-backend-type. Presently,
> > only
> > "files" is supported, but later we will add other backends.
> >
> > When this argument is used, the repository's
On Wed, Dec 23, 2015 at 10:52:41AM +0100, Michael Haggerty wrote:
> On 12/05/2015 08:44 AM, Jeff King wrote:
> > [...]
> > I think the config option needs to be extensions.refsBackendType, too,
> > per the logic in 00a09d5 (introduce "extensions" form of
> > core.repositoryformatversion, 2015-06-2
On 12/03/2015 01:35 AM, David Turner wrote:
> git init learns a new argument --refs-backend-type. Presently, only
> "files" is supported, but later we will add other backends.
>
> When this argument is used, the repository's core.refsBackendType
> configuration value is set, and the refs backend'
On 12/05/2015 08:44 AM, Jeff King wrote:
> [...]
> I think the config option needs to be extensions.refsBackendType, too,
> per the logic in 00a09d5 (introduce "extensions" form of
> core.repositoryformatversion, 2015-06-23). And I guess it needs to bump
> core.repositoryformatversion to "1".
I th
On Thu, 2015-12-10 at 13:02 -0500, Jeff King wrote:
> On Wed, Dec 02, 2015 at 07:35:18PM -0500, David Turner wrote:
>
> > @@ -510,9 +511,36 @@ int validate_headref(const char *path)
> > unsigned char sha1[20];
> > int fd;
> > ssize_t len;
> > + struct refdb_config_data refdb_data = {
On Wed, Dec 02, 2015 at 07:35:18PM -0500, David Turner wrote:
> @@ -510,9 +511,36 @@ int validate_headref(const char *path)
> unsigned char sha1[20];
> int fd;
> ssize_t len;
> + struct refdb_config_data refdb_data = {NULL, NULL};
> +
> + if (lstat(path, &st) < 0) {
> +
On Sat, 2015-12-05 at 02:44 -0500, Jeff King wrote:
> On Sat, Dec 05, 2015 at 07:30:13AM +0100, Duy Nguyen wrote:
>
> > On Thu, Dec 3, 2015 at 1:35 AM, David Turner
> > wrote:
> > > git init learns a new argument --refs-backend-type. Presently, only
> > > "files" is supported, but later we will
On Sat, Dec 05, 2015 at 07:30:13AM +0100, Duy Nguyen wrote:
> On Thu, Dec 3, 2015 at 1:35 AM, David Turner wrote:
> > git init learns a new argument --refs-backend-type. Presently, only
> > "files" is supported, but later we will add other backends.
> >
> > When this argument is used, the reposi
On Thu, Dec 3, 2015 at 1:35 AM, David Turner wrote:
> git init learns a new argument --refs-backend-type. Presently, only
> "files" is supported, but later we will add other backends.
>
> When this argument is used, the repository's core.refsBackendType
> configuration value is set, and the refs
David Turner writes:
> diff --git a/setup.c b/setup.c
> index d343725..de6b8ac 100644
> --- a/setup.c
> +++ b/setup.c
> @@ -1,5 +1,6 @@
> #include "cache.h"
> #include "dir.h"
> +#include "refs.h"
> #include "string-list.h"
>
> static int inside_git_dir = -1;
> @@ -263,6 +264,15 @@ int get_
15 matches
Mail list logo