Configuration for global ignore patterns in ~/.config/git/config:
[core]
excludesfile = .gitignore
doesn't get looked up per default in ~/.config/git/ which might be
considered a bug as the .gitignore file isn't loaded. It's only loaded
when .gitignore is located in $HOME or explicitly refere
On Fri, Oct 26, 2018 at 08:43:37AM +0900, Junio C Hamano wrote:
> Jeff King writes:
>
> > An easy test is:
> >
> > $ git rev-list --no-walk --exclude='*' --all --all
> > 3289ca716320457af5d2dd550b716282ad22da11
> > ...a bunch of other tip commits...
> >
> > $ git rev-parse --exclude='*'
Here are the topics that have been cooking. Commits prefixed with
'-' are only in 'pu' (proposed updates) while commits prefixed with
'+' are in 'next'. The ones marked with '.' do not appear in any of
the integration branches, but I am still holding onto them.
Quite a few topics have graduated
On Fri, Oct 26, 2018 at 09:30:51AM +0200, Raphael Stolt wrote:
> Configuration for global ignore patterns in ~/.config/git/config:
>
> [core]
> excludesfile = .gitignore
>
> doesn't get looked up per default in ~/.config/git/ which might be
> considered a bug as the .gitignore file isn't loa
Hi Jonathan,
On Thu, 25 Oct 2018, Jonathan Tan wrote:
> > On Wed, 24 Oct 2018, Johannes Schindelin wrote:
> >
> > Coming back to my question whether there is a better way to check for
> > the presence of a local commit, I figured that I can use
> > `has_object_file()` instead of looking up and p
Hi Hannes,
On Thu, 25 Oct 2018, Johannes Sixt wrote:
> The sequencer instruction 'b', short for 'break', is rejected:
>
> error: invalid line 2: b
>
> The reason is that the parser expects all short commands to have
> an argument. Permit short commands without arguments.
>
> Signed-off-by: J
Hi Hannes,
On Thu, 25 Oct 2018, Johannes Sixt wrote:
> Test each short command at least once. The commands changed here
> are chosen such that
I stumbled over this, and understood it only after looking at the patch.
How about this instead:
Make sure that each short command is tested at
Hi Junio,
On Thu, 25 Oct 2018, Junio C Hamano wrote:
> "Johannes Schindelin via GitGitGadget"
> writes:
>
> > For a long time already, we have Git's source code continuously tested via
> > Travis CI, see e.g. https://travis-ci.org/git/git/builds/421738884. It has
> > served us well, and more an
On Sat, Oct 20, 2018 at 02:58:53PM -0400, Jeff King wrote:
> On Sat, Oct 20, 2018 at 01:14:28PM +0200, Ævar Arnfjörð Bjarmason wrote:
>
> > > I'd guess this sort of thing is pretty rare. But I wonder if we're
> > > crossing the line of trying to assume too much about what the user's
> > > arbitra
Hi Junio
On 25/10/2018 09:59, Junio C Hamano wrote:
> Phillip Wood writes:
>
>> From: Phillip Wood
>>
>> Thanks to Eric for his feedback on v1. I've rerolled based on
>> that. Patches 1 & 2 are new and try to address some of the concerns
>> Eric raised, particularly the error handling for a bad
On Thu, Oct 25, 2018 at 10:38:46AM -0400, Jason Cooper wrote:
> On 10/25/18 1:37 AM, Junio C Hamano wrote:
> > "lhf...@163.com" writes:
> >
> >> I have a good idea, add a file to git that is the opposite of
> >> .gitignore...,
> > Do negative patterns in .gitignore file help without inventing
>
Jeff King wrote 2018-10-26 5:36 (-0400):
> I think what Junio meant is to ignore everything by default, like:
>
> echo '*' >.gitignore
>
> and then selectively use negative patterns (and being in .gitignore,
> that makes them positive "yes, include this") to add things back:
>
> echo 'foo' >
On Fri, Oct 26, 2018 at 01:31:51PM +0200, Mischa POSLAWSKY wrote:
> Jeff King wrote 2018-10-26 5:36 (-0400):
> > I think what Junio meant is to ignore everything by default, like:
> >
> > echo '*' >.gitignore
> >
> > and then selectively use negative patterns (and being in .gitignore,
> > that
Hi Junio,
On Fri, 26 Oct 2018, Junio C Hamano wrote:
> * js/mingw-http-ssl (2018-10-26) 3 commits
> (merged to 'next' on 2018-10-26 at 318e82e101)
> + http: when using Secure Channel, ignore sslCAInfo by default
> + http: add support for disabling SSL revocation checks in cURL
> + http: add
On Fri, Oct 26 2018, Jeff King wrote:
> On Thu, Oct 25, 2018 at 10:38:46AM -0400, Jason Cooper wrote:
>
>> On 10/25/18 1:37 AM, Junio C Hamano wrote:
>> > "lhf...@163.com" writes:
>> >
>> >> I have a good idea, add a file to git that is the opposite of
>> >> .gitignore...,
>> > Do negative pat
On Fri, Oct 26 2018, Jeff King wrote:
> On Sat, Oct 20, 2018 at 02:58:53PM -0400, Jeff King wrote:
>
>> On Sat, Oct 20, 2018 at 01:14:28PM +0200, Ævar Arnfjörð Bjarmason wrote:
>>
>> > > I'd guess this sort of thing is pretty rare. But I wonder if we're
>> > > crossing the line of trying to assu
Thanks.
I think this one is identical to what has already been queued and
nerged to 'next'.
k
Johannes Schindelin writes:
> Hi Junio,
>
> On Fri, 26 Oct 2018, Junio C Hamano wrote:
>
>> * js/mingw-http-ssl (2018-10-26) 3 commits
>> (merged to 'next' on 2018-10-26 at 318e82e101)
>> + http: when using Secure Channel, ignore sslCAInfo by default
>> + http: add support for disabling SSL r
One other option is to just use a pattern that matches everything, i.e:
echo '*' > .gitignore
And take advantage that ignore rules do not apply to tracked files.
So instead of using an explicit .gitonly, you add files using:
git add -f
All files should be ignored except the ones that were
Phillip Wood writes:
>> I spotted a weird corner case buglet, but it seems that this one is
>> ready for 'next' even without fixing that "give it three times and
>> we will happily continue" thing.
>
> Well spotted on the corner case. If you're happy to hold off on moving
> it to next I can send
On Fri, Oct 26, 2018 at 02:39:26PM +0200, Ævar Arnfjörð Bjarmason wrote:
> On Fri, Oct 26 2018, Jeff King wrote:
> > On Thu, Oct 25, 2018 at 10:38:46AM -0400, Jason Cooper wrote:
> >> On 10/25/18 1:37 AM, Junio C Hamano wrote:
> >> > "lhf...@163.com" writes:
> >> >> I have a good idea, add a file
On 10/23/2018 4:28 PM, Jeff King wrote:
On Thu, Oct 18, 2018 at 08:05:22PM +0200, Nguyễn Thái Ngọc Duy wrote:
On Thu, Oct 18, 2018 at 7:09 PM Jeff King wrote:
In this particular case though I think we should be able to avoid so
much #if if we make a wrapper for pthread api that would retur
On Fri, Oct 26, 2018 at 11:48:38AM +0900, Junio C Hamano wrote:
> tbo...@web.de writes:
>
> > From: Torsten Bögershausen
>
> > Subject: Re: [PATCH v1 2/2] curl_off_t xcurl_off_t is not portable
>
> That title is misleading; it sounded as if the are these two
> typedefs and they do not work corr
On Fri, Oct 26, 2018 at 01:34:53PM +, Jason Cooper wrote:
> On Fri, Oct 26, 2018 at 02:39:26PM +0200, Ævar Arnfjörð Bjarmason wrote:
...
> > I thought this was a bug:
> >
> > (
> > rm -rf /tmp/git &&
> > git init /tmp/git &&
> > cd /tmp/git >/dev
On Thu, Oct 11 2018, Junio C Hamano wrote:
> Ævar Arnfjörð Bjarmason writes:
>
>> On Wed, Oct 10 2018, Jeff King wrote:
>>
>>> This is much better, and I love the customized behavior based on the
>>> object type.
>>>
>>> I wonder if we could reword the first paragraph to be a little less
>>> co
Derrick Stolee writes:
> On 10/22/2018 9:37 AM, Jakub Narebski wrote:
>> "Derrick Stolee via GitGitGadget" writes:
[...]
>> Sidenote: the new algorithm looks a bit like Unix pipeline, where each
>> step of pipeline does not output much more than next step needs /
>> requests.
>
> That's essential
Bonjour
Vous aviez besoin de prêts d'argent entre particuliers pour faire face
aux difficultés financières pour enfin sortir de l'impasse que
provoquent les banques, par le rejet de vos dossiers de demande de
crédits ?
Je suis un citoyen français à la retraite en mesure de vous faire
un prêt de 50
On Thu, Oct 25, 2018 at 6:59 PM Junio C Hamano wrote:
>
> Stefan Beller writes:
>
> >> In this series I am addressing the comments by Stefan Beller about the
> >> tests in patch 9.
> >>
> >> If the new tests look OK, I'd say we try moving the series to "next" and
> >> see what happens?
> >
> > So
> Reviewed-by: Jonathan Tan
Probably better not to include such lines, especially since the review
by me is not yet complete.
Having said that, patches 1-5 look good to me. Patches 1-3 are identical
to the previous version, which I have already reviewed. In patch 4,
Stefan made the code change I
>
> * sb/strbuf-h-update (2018-09-29) 1 commit
> (merged to 'next' on 2018-10-26 at e4ad935cb0)
> + strbuf.h: format according to coding guidelines
>
> Code clean-up to serve as a BCP example.
>
> Will merge to 'master'.
> Further clean-up patches may need to follow soon before this
> change
> diff --git a/builtin/grep.c b/builtin/grep.c
> index 7da8fef31a..ba7634258a 100644
> --- a/builtin/grep.c
> +++ b/builtin/grep.c
> @@ -418,7 +418,10 @@ static int grep_submodule(struct grep_opt *opt, struct
> repository *superproject,
> const struct object_id *oid,
>
On Thu, Oct 25 2018, Jeff King wrote:
> On Thu, Oct 25, 2018 at 02:24:41AM +0100, Ramsay Jones wrote:
>
>> >> Yeah, my thinko. The latter would be closer to what this patch
>> >> wants to have, but obviously the former would be more flexible and
>> >> useful in wider context. Both have the "Hu
> We used to recurse into submodules, even if they were broken having
> only an objects directory. The child process executed in the submodule
> would fail though if the submodule was broken.
>
> This patch tightens the check upfront, such that we do not need
> to spawn a child process to find out
This has grown to a 7-part series for v2 (from 2 patches). This
addresse all the feedback for v1 and then some.
Ævar Arnfjörð Bjarmason (7):
remote.c: add braces in anticipation of a follow-up change
i18n: remote.c: mark error(...) messages for translation
push: improve the error shown on un
The CodingGuidelines say "When there are multiple arms to a
conditional and some of them require braces, enclose even a single
line block in braces for consistency.". Fix the code in
match_explicit() to conform.
While I'm at it change the if/else if/else in guess_ref() to use
braces. This is not c
Mark up the error(...) messages in remote.c for translation. The likes
of "unable to push to unqualified destination" are relatively big
parts of the UI, i.e. error messages shown when "git push" fails.
I don't think any of these are plumbing, an the entire test suite
passes when running the tests
Add DWYM support for pushing a ref in refs/remotes/* when the
ref is unqualified, e.g.:
git push origin refs/remotes/origin/master:upstream-master
Before this we wouldn't know what do do with
refs/remotes/origin/master, now we'll look it up and discover that
it's a commit (or tag) and add a
Add an advice to the recently improved error message added in
f8aae12034 ("push: allow unqualified dest refspecs to DWIM",
2008-04-23).
Now with advice.pushUnqualifiedRefName=true (on by default) we show a
hint about how to proceed:
$ ./git-push avar v2.19.0^{commit}:newbranch -n
error: T
Improve the error message added in f8aae12034 ("push: allow
unqualified dest refspecs to DWIM", 2008-04-23), which before this
change looks like this:
$ git push avar v2.19.0^{commit}:newbranch -n
error: unable to push to unqualified destination: newbranch
The destination refspec neith
Add a test asserting that "git push origin :" where is
a branch, tag, tree or blob in refs/remotes/* doesn't DWYM when
is unqualified. This has never worked, but there's been no test for
this behavior.
See f88395ac23 ("Renaming push.", 2005-08-03), bb9fca80ce ("git-push:
Update description of re
A follow-up change will extend this error message with the advice
facility. Doing so would make the indentation too deeply nested for
comfort. So let's split this into a helper function.
There's no changes to the wording here. Just code moving &
re-indentation, and re-flowing the "TRANSLATORS" com
On Fri, Oct 26 2018, Junio C Hamano wrote:
> "Jansen, Geert" writes:
>
>> The index-pack command determines if a sha1 collision test is needed by
>> checking the existence of a loose object with the given hash. In my tests, I
>> can improve performance of “git clone” on Amazon EFS by 8x when us
> But this default fetch is not sufficient, as a newly fetched commit in
> the superproject could point to a commit in the submodule that is not
> in the default refspec. This is common in workflows like Gerrit's.
> When fetching a Gerrit change under review (from refs/changes/??), the
> commits in
> Gerrit, the code review tool, has a different workflow than our mailing
> list based approach. Usually users upload changes to a Gerrit server and
> continuous integration and testing happens by bots. Sometimes however a
> user wants to checkout a change locally and look at it locally. For this
>
> Thanks for confirming.
>
> So even better would be to use `is_promisor_object(oid) ||
> has_object_file(oid)`, right?
>
> This is something that is probably not even needed: as I mentioned, the
> shallow commits are *expected* to be local. It should not ever happen that
> they are fetched.
Tha
Junio C Hamano writes:
> Derrick Stolee writes:
>
>> time git log --topo-order -10 master >/dev/null
>>
>> time git log --topo-order -10 maint..master >/dev/null
>>
>> I get 0.39s for the first call and 0.01s for the second. (Note: I
>> specified "-10" to ensure we are only writing 10 co
On Fri, Oct 26, 2018 at 12:27 PM Ævar Arnfjörð Bjarmason
wrote:
>
> The CodingGuidelines say "When there are multiple arms to a
> conditional and some of them require braces, enclose even a single
> line block in braces for consistency.". Fix the code in
> match_explicit() to conform.
A tangent f
On Fri, Oct 26, 2018 at 12:15 PM Jonathan Tan wrote:
[snip]
> The expected pattern.
>
> This patch looks good to me.
I'll take this as a "Reviewed-by"?
Thanks,
Stefan
The CodingGuidelines say "When there are multiple arms to a
conditional and some of them require braces, enclose even a single
line block in braces for consistency.". Fix the code in
match_explicit() to conform.
While I'm at it change the if/else if/else in guess_ref() to use
braces. This is not c
Mark up the error(...) messages in remote.c for translation. The likes
of "unable to push to unqualified destination" are relatively big
parts of the UI, i.e. error messages shown when "git push" fails.
I don't think any of these are plumbing, an the entire test suite
passes when running the tests
After sending out v2 I noticed I didn't update the examples in a
couple of the commit messages, and figured I'd finish this up by
adding a patch to document how this works in the "git-push"
manpage. This behavior has never been properly documented. range-diff
with v2:
1: ca8eb6dc28 = 1:
Document the DWYM behavior that kicks in when pushing to an
unqualified reference.
This behavior was added in f88395ac23 ("Renaming push.", 2005-08-03)
and f8aae12034 ("push: allow unqualified dest refspecs to DWIM",
2008-04-23), and somewhat documented in bb9fca80ce ("git-push: Update
descriptio
Add a test asserting that "git push origin :" where is
a branch, tag, tree or blob in refs/remotes/* doesn't DWYM when
is unqualified. This has never worked, but there's been no test for
this behavior.
See f88395ac23 ("Renaming push.", 2005-08-03), bb9fca80ce ("git-push:
Update description of re
Add an advice to the recently improved error message added in
f8aae12034 ("push: allow unqualified dest refspecs to DWIM",
2008-04-23).
Now with advice.pushUnqualifiedRefName=true (on by default) we show a
hint about how to proceed:
$ ./git-push avar v2.19.0^{commit}:newbranch -n
error: T
Add DWYM support for pushing a ref in refs/remotes/* when the
ref is unqualified. Now instead of erroring out we support e.g.:
$ ./git-push avar refs/remotes/origin/master:upstream-master -n
To github.com:avar/git.git
* [new branch]origin/master -> upstream-master
Before
Improve the error message added in f8aae12034 ("push: allow
unqualified dest refspecs to DWIM", 2008-04-23), which before this
change looks like this:
$ git push avar v2.19.0^{commit}:newbranch -n
error: unable to push to unqualified destination: newbranch
The destination refspec neith
A follow-up change will extend this error message with the advice
facility. Doing so would make the indentation too deeply nested for
comfort. So let's split this into a helper function.
There's no changes to the wording here. Just code moving &
re-indentation, and re-flowing the "TRANSLATORS" com
On 26/10/2018 04:15, Carlo Arenas wrote:
> On Thu, Oct 25, 2018 at 2:09 PM Ramsay Jones
> wrote:
>> Yes, this will 'fix' the 'commit-reach.h' header (not surprising),
>> but I prefer my patch. ;-)
>
> I apologize, I joined the list recently and so might had missed a
> reroll; the merged series
I have some changes to the hdr-check Makefile target in the works, but
these clean-ups don't have to be held up by those changes.
The 'fetch-object.h' patch is the same one I sent separately last time,
since it only applied on 'next' at the time. The 'ewok_rlw.h' patch is
just something I notice
Signed-off-by: Ramsay Jones
---
fetch-object.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/fetch-object.h b/fetch-object.h
index d2f996d4e8..d6444caa5a 100644
--- a/fetch-object.h
+++ b/fetch-object.h
@@ -1,6 +1,8 @@
#ifndef FETCH_OBJECT_H
#define FETCH_OBJECT_H
+struct object_id;
The 'ewok_rlw.h' header file contains the rlw_get_run_bit() function
definition, which is marked as 'static' but not 'inline'. At least when
compiled by gcc, with the default -O2 optimization level, the function
is actually inlined and leaves no static version in the ewah_bitmap.o
and ewah_rlw.o
Add the necessary #includes and forward declarations to allow the header
file to pass the 'hdr-check' target.
Note that, since this header includes the commit-slab implementation
header file (indirectly via commit-slab.h), some of the commit-slab
inline functions (e.g contains_cache_at_peek()) w
On Fri, Oct 26, 2018 at 04:57:26PM +0900, Junio C Hamano wrote:
> * tb/filter-alternate-refs (2018-10-25) 2 commits
> (merged to 'next' on 2018-10-26 at 887a7779a3)
> + t5410: use longer path for sample script
> + Documentation/config.txt: fix typo in core.alternateRefsCommand
>
> Test fix.
>
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 103 +---
Documentation/config/branch.txt | 102 +++
2 files changed, 103 insertions(+), 102 deletions(-)
create mode 100644 Documentation/config/branch.txt
diff --g
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 15 +--
Documentation/config/difftool.txt | 14 ++
2 files changed, 15 insertions(+), 14 deletions(-)
create mode 100644 Documentation/config/difftool.txt
diff --git a/Documentation/config.txt b/
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 272 +-
Documentation/config/http.txt | 271 +
2 files changed, 272 insertions(+), 271 deletions(-)
create mode 100644 Documentation/config/http.txt
diff --git
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 2 +-
Documentation/{gui-config.txt => config/gui.txt} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename Documentation/{gui-config.txt => config/gui.txt} (100%)
diff --git a/Documentation/config.
Compared to the version on 'pu', this one moves all the config files
to Documentation/config/ directory. imap.* is also added back in
config.txt (curently only documented in git-imap-send.txt)
This one is built on top of bp/reset-quiet and js/mingw-http-ssl to
avoid non-trivial conflicts.
I notic
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 202 +
Documentation/config/color.txt | 201
2 files changed, 202 insertions(+), 201 deletions(-)
create mode 100644 Documentation/config/color.txt
diff --gi
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 10 +-
Documentation/config/filter.txt | 9 +
2 files changed, 10 insertions(+), 9 deletions(-)
create mode 100644 Documentation/config/filter.txt
diff --git a/Documentation/config.txt b/Documentation/con
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 11 +--
Documentation/config/i18n.txt | 10 ++
2 files changed, 11 insertions(+), 10 deletions(-)
create mode 100644 Documentation/config/i18n.txt
diff --git a/Documentation/config.txt b/Documentation/config
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 24 +---
Documentation/config/help.txt | 23 +++
2 files changed, 24 insertions(+), 23 deletions(-)
create mode 100644 Documentation/config/help.txt
diff --git a/Documentation/config.
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 2 +-
Documentation/{format-config.txt => config/format.txt} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename Documentation/{format-config.txt => config/format.txt} (100%)
diff --git a/Doc
Note that this file is not directly included in config.txt but through
merge-config.txt and it's in "merge" section instead of a separate
"fmtMergeMsg" section like others.
Signed-off-by: Nguyễn Thái Ngọc Duy
---
.../{fmt-merge-msg-config.txt => config/fmt-merge-msg.txt} | 0
Documentation/
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 4 +---
Documentation/config/clean.txt | 3 +++
2 files changed, 4 insertions(+), 3 deletions(-)
create mode 100644 Documentation/config/clean.txt
diff --git a/Documentation/config.txt b/Documentation/config.txt
index a473
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 2 +-
Documentation/{gitcvs-config.txt => config/gitcvs.txt} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename Documentation/{gitcvs-config.txt => config/gitcvs.txt} (100%)
diff --git a/Doc
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 88 +
Documentation/config/advice.txt | 86
2 files changed, 87 insertions(+), 87 deletions(-)
create mode 100644 Documentation/config/advice.txt
diff --git
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 8 +---
Documentation/config/add.txt | 7 +++
2 files changed, 8 insertions(+), 7 deletions(-)
create mode 100644 Documentation/config/add.txt
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 2b
config.txt is going to be broken down in smaller pieces and put under
Documentation/config directory. Update build rules to take these files
into account.
A dummy file is added to make sure wildcard expansion is predictable
(depending on shell setting it could expand to nothing or becomes a
path i
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 24 +---
Documentation/config/checkout.txt | 23 +++
2 files changed, 24 insertions(+), 23 deletions(-)
create mode 100644 Documentation/config/checkout.txt
diff --git a/Documenta
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 10 +-
Documentation/config/browser.txt | 9 +
2 files changed, 10 insertions(+), 9 deletions(-)
create mode 100644 Documentation/config/browser.txt
diff --git a/Documentation/config.txt b/Documentation/
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 19 +--
Documentation/config/alias.txt | 18 ++
2 files changed, 19 insertions(+), 18 deletions(-)
create mode 100644 Documentation/config/alias.txt
diff --git a/Documentation/config.txt b/D
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 27 +--
Documentation/config/credential.txt | 26 ++
2 files changed, 27 insertions(+), 26 deletions(-)
create mode 100644 Documentation/config/credential.txt
diff --git
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 21 +
Documentation/config/gpg.txt | 20
2 files changed, 21 insertions(+), 20 deletions(-)
create mode 100644 Documentation/config/gpg.txt
diff --git a/Documentation/config.txt b/Doc
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 25 +
Documentation/config/grep.txt | 24
2 files changed, 25 insertions(+), 24 deletions(-)
create mode 100644 Documentation/config/grep.txt
diff --git a/Documentation/confi
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 22 +-
Documentation/config/blame.txt | 21 +
2 files changed, 22 insertions(+), 21 deletions(-)
create mode 100644 Documentation/config/blame.txt
diff --git a/Documentation/config.t
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 30 +-
Documentation/config/commit.txt | 29 +
2 files changed, 30 insertions(+), 29 deletions(-)
create mode 100644 Documentation/config/commit.txt
diff --git a/Doc
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 56 +
Documentation/config/column.txt | 55
2 files changed, 56 insertions(+), 55 deletions(-)
create mode 100644 Documentation/config/column.txt
diff --git
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 68 +--
Documentation/config/fsck.txt | 67 ++
2 files changed, 68 insertions(+), 67 deletions(-)
create mode 100644 Documentation/config/fsck.txt
diff --git a
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 15 +--
Documentation/config/am.txt | 14 ++
2 files changed, 15 insertions(+), 14 deletions(-)
create mode 100644 Documentation/config/am.txt
diff --git a/Documentation/config.txt b/Documentation/conf
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 595 +-
Documentation/config/core.txt | 594 +
2 files changed, 595 insertions(+), 594 deletions(-)
create mode 100644 Documentation/config/core.txt
diff --git
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 4 +--
Documentation/config/imap.txt | 44
Documentation/git-imap-send.txt | 45 +
3 files changed, 46 insertions(+), 47 deletions(-)
create mode 100644 D
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 12 +---
Documentation/config/apply.txt | 11 +++
2 files changed, 12 insertions(+), 11 deletions(-)
create mode 100644 Documentation/config/apply.txt
diff --git a/Documentation/config.txt b/Documentation/c
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 8 +---
Documentation/config/completion.txt | 7 +++
2 files changed, 8 insertions(+), 7 deletions(-)
create mode 100644 Documentation/config/completion.txt
diff --git a/Documentation/config.txt b/Documentatio
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 2 +-
Documentation/{fetch-config.txt => config/fetch.txt} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename Documentation/{fetch-config.txt => config/fetch.txt} (100%)
diff --git a/Documenta
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 7 +--
Documentation/config/mailinfo.txt | 6 ++
2 files changed, 7 insertions(+), 6 deletions(-)
create mode 100644 Documentation/config/mailinfo.txt
diff --git a/Documentation/config.txt b/Documentation/config
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 16 +---
Documentation/config/mailmap.txt | 15 +++
2 files changed, 16 insertions(+), 15 deletions(-)
create mode 100644 Documentation/config/mailmap.txt
diff --git a/Documentation/config.txt b/D
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt | 4 +---
Documentation/config/init.txt | 3 +++
2 files changed, 4 insertions(+), 3 deletions(-)
create mode 100644 Documentation/config/init.txt
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 03b7ac7
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 109 +---
Documentation/config/gc.txt | 108 +++
2 files changed, 109 insertions(+), 108 deletions(-)
create mode 100644 Documentation/config/gc.txt
diff --git a
Signed-off-by: Nguyễn Thái Ngọc Duy
---
Documentation/config.txt| 17 +
Documentation/config/gitweb.txt | 16
2 files changed, 17 insertions(+), 16 deletions(-)
create mode 100644 Documentation/config/gitweb.txt
diff --git a/Documentation/config.txt b/Do
1 - 100 of 146 matches
Mail list logo