Re: [PATCH] hash: Allow building with the external sha1dc library

2017-07-31 Thread Takashi Iwai
On Fri, 28 Jul 2017 18:04:18 +0200, Ævar Arnfjörð Bjarmason wrote: > > On Fri, Jul 28, 2017 at 5:58 PM, Ævar Arnfjörð Bjarmason > wrote: > > On Tue, Jul 25, 2017 at 7:57 AM, Takashi Iwai wrote: > >> Some distros provide SHA1 collision detect code as a shared

Re: [PATCH] hash: Allow building with the external sha1dc library

2017-07-31 Thread Takashi Iwai
On Fri, 28 Jul 2017 17:58:14 +0200, Ævar Arnfjörð Bjarmason wrote: > > On Tue, Jul 25, 2017 at 7:57 AM, Takashi Iwai wrote: > > Some distros provide SHA1 collision detect code as a shared library. > > It's the very same code as we have in git tree, and git can link with > > it as

[RFC] Moving main git-subtree development. to GitHub

2017-07-31 Thread David A. Greene
Hello all, I have decided that moving git-subtree development off of the main git mailing list is the best way to address the needs of git-subtree users while providing the flexibility necessary to get it in shape for eventual "official" status in the git project. Over the last year and a half I

Re: [PATCH 0/1] add git-splice subcommand for non-interactive branch splicing

2017-07-31 Thread Adam Spiers
On 31 July 2017 at 23:18, Junio C Hamano wrote: > Adam Spiers writes: > > > Therefore there is a risk that each new UI for higher-level workflows > > will end up re-implementing these mid-level operations. This > > undesirable situation could be avoided

RE:

2017-07-31 Thread TD CREDIT
DO YOU NEED ANY KIND OF LOAN CREDIT ASSISTANCE? IF YES,EMAIL US FOR MORE INFO. --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com

Re: [PATCH 2/2] t6500: mark tests as SHA1 reliant

2017-07-31 Thread brian m. carlson
On Mon, Jul 31, 2017 at 01:26:40PM -0700, Stefan Beller wrote: > On Sun, Jul 30, 2017 at 4:24 PM, brian m. carlson > wrote: > > I realize this was worded poorly. So for my example, in this case, we'd > > do: > > > > test-helper-hash-string "263 410" > > > > For

Re: reftable [v4]: new ref storage format

2017-07-31 Thread Shawn Pearce
On Mon, Jul 31, 2017 at 12:42 PM, Junio C Hamano wrote: > Shawn Pearce writes: > >> ### Peeling >> >> References in a reftable are always peeled. > > This hopefully means "a record for an annotated (or signed) tag > records both the tag object and the

Re: [PATCH v3 07/10] submodule: check for unstaged .gitmodules outside of config parsing

2017-07-31 Thread Stefan Beller
On Tue, Jul 18, 2017 at 12:05 PM, Brandon Williams wrote: > Teach 'is_staging_gitmodules_ok()' to be able to determine in the > '.gitmodules' file has unstaged changes based on the passed in index > instead of relying on a global varible which is set during the variable >

Re: What's cooking in git.git (Jul 2017, #09; Mon, 31)

2017-07-31 Thread Ramsay Jones
On 31/07/17 23:30, Junio C Hamano wrote: [snip] > > * sd/branch-copy (2017-06-18) 3 commits > (merged to 'next' on 2017-07-18 at 5e3b9357ea) > + branch: add a --copy (-c) option to go with --move (-m) > + branch: add test for -m renaming multiple config sections > + config: create a

Re: [GSoC][PATCH 08/13] submodule: port submodule subcommand 'summary' from shell to C

2017-07-31 Thread Christian Couder
On Mon, Jul 31, 2017 at 10:56 PM, Prathamesh Chavan wrote: > * variable head was no longer used in module_summary() and instead the strbuf > was utilized. Good but there might be a few problems in the way it is used. See below. > +static int

[PATCH] convert any hard coded .gitmodules file string to the MACRO

2017-07-31 Thread Stefan Beller
I used these commands: $ cat sem.cocci @@ @@ - ".gitmodules" + GITMODULES_FILE $ spatch --in-place --sp-file sem.cocci builtin/*.c *.c *.h Feel free to regenerate or squash it in or have it as a separate commit. Signed-off-by: Stefan Beller --- submodule.c|

Re: reftable [v4]: new ref storage format

2017-07-31 Thread Shawn Pearce
On Mon, Jul 31, 2017 at 12:01 PM, Stefan Beller wrote: > On Sun, Jul 30, 2017 at 8:51 PM, Shawn Pearce wrote: >> 4th iteration of the reftable storage format. >> >> You can read a rendered version of this here: >>

Re: [PATCH v2 0/5] Fsck for lazy objects, and (now) actual invocation of loader

2017-07-31 Thread Jonathan Tan
On Mon, 31 Jul 2017 14:21:56 -0700 Junio C Hamano wrote: > Jonathan Tan writes: > > > Besides review changes, this patch set now includes my rewritten > > lazy-loading sha1_file patch, so you can now do this (excerpted from one > > of the tests): >

What's cooking in git.git (Jul 2017, #09; Mon, 31)

2017-07-31 Thread Junio C Hamano
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. Even though -rc2 was scheduled

Re: [PATCH] hash: Allow building with the external sha1dc library

2017-07-31 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: > So the upstream library expects you (and it's documented in their README) to > do: > > #include > > But your patch is just doing: > > #include > > At best this seems like a trivial bug and at worst us encoding some > Suse-specific

Re: [GSoC][PATCH 13/13] submodule: port submodule subcommand 'foreach' from shell to C

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:56 PM, Prathamesh Chavan wrote: > This aims to make git-submodule foreach a builtin. This is the very > first step taken in this direction. Hence, 'foreach' is ported to > submodule--helper, and submodule--helper is called from git-submodule.sh. > The

Re: [PATCH 0/1] add git-splice subcommand for non-interactive branch splicing

2017-07-31 Thread Junio C Hamano
Adam Spiers writes: > Therefore there is a risk that each new UI for higher-level workflows > will end up re-implementing these mid-level operations. This > undesirable situation could be avoided if git itself provided those > mid-level operations. Let me make sure if I

Re: [GSoC][PATCH 08/13] submodule: port submodule subcommand 'summary' from shell to C

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:56 PM, Prathamesh Chavan wrote: > The submodule subcommand 'summary' is ported in the process of > making git-submodule a builtin. The function cmd_summary() from > git-submodule.sh is ported to functions module_summary(), >

Re: [GSoC][PATCH 06/13] submodule: port submodule subcommand 'deinit' from shell to C

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:56 PM, Prathamesh Chavan wrote: > The same mechanism is used even for porting this submodule > subcommand, as used in the ported subcommands till now. > The function cmd_deinit in split up after porting into three > functions: module_deinit(),

Re: [PATCH v2 5/5] sha1_file: support loading lazy objects

2017-07-31 Thread Junio C Hamano
Jonathan Tan writes: > Teach sha1_file to invoke the command configured in > extensions.lazyObject whenever an object is requested and unavailable. > > The usage of the hook can be suppressed through a flag when invoking > has_object_file_with_flags() and other similar

[PATCH 0/1] add git-splice subcommand for non-interactive branch splicing

2017-07-31 Thread Adam Spiers
This patch adds a new subcommand called git-splice, which facilitates higher-level workflow operations in the area of branch management, for example moving commits from one branch into another, or decomposing large branches into smaller, independent branches, or vice-versa. Motivation --

[PATCH 1/1] add git-splice command for non-interactive branch splicing

2017-07-31 Thread Adam Spiers
Add a new subcommand git-splice(1) which non-interactively splices the current branch by removing a range of commits from within it and/or cherry-picking a range of commits into it. It's essentially a convenience wrapper around cherry-pick and interactive rebase, but the workflow state is

Re: [PATCH v2 0/5] Fsck for lazy objects, and (now) actual invocation of loader

2017-07-31 Thread Junio C Hamano
Jonathan Tan writes: > Besides review changes, this patch set now includes my rewritten > lazy-loading sha1_file patch, so you can now do this (excerpted from one > of the tests): > > test_create_repo server > test_commit -C server 1 1.t abcdefgh >

Re: [GSoC][PATCH 05/13] submodule: port submodule subcommand 'sync' from shell to C

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:56 PM, Prathamesh Chavan wrote: > In this new version, the following changes have been made: > * There was no good reason for using puts in the function > print_default_remote() > Hence, in this patch, we instead use printf to do the same, as it is

Re: [GSoC][PATCH 04/13] submodule: port submodule subcommand 'status' from shell to C

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:56 PM, Prathamesh Chavan wrote: > This aims to make git-submodule 'status' a built-in. Hence, the function > cmd_status() is ported from shell to C. This is done by introducing > three functions: module_status(), submodule_status() and print_status().

[PATCH v2 5/5] sha1_file: support loading lazy objects

2017-07-31 Thread Jonathan Tan
Teach sha1_file to invoke the command configured in extensions.lazyObject whenever an object is requested and unavailable. The usage of the hook can be suppressed through a flag when invoking has_object_file_with_flags() and other similar functions. This is meant as a temporary measure to ensure

[PATCH v2 4/5] fsck: support lazy objects as CLI argument

2017-07-31 Thread Jonathan Tan
Teach fsck to not treat missing objects provided on the CLI as an error when extensions.lazyobject is set. Signed-off-by: Jonathan Tan --- builtin/fsck.c | 2 ++ t/t0410-lazy-object.sh | 16 2 files changed, 18 insertions(+) diff --git

[PATCH v2 2/5] fsck: support refs pointing to lazy objects

2017-07-31 Thread Jonathan Tan
Teach fsck to not treat refs with missing targets as an error when extensions.lazyobject is set. For the purposes of warning about no default refs, such refs are still treated as legitimate refs. Signed-off-by: Jonathan Tan --- builtin/fsck.c | 8

[PATCH v2 1/5] environment, fsck: introduce lazyobject extension

2017-07-31 Thread Jonathan Tan
Currently, Git does not support repos with very large numbers of objects or repos that wish to minimize manipulation of certain blobs (for example, because they are very large) very well, even if the user operates mostly on part of the repo, because Git is designed on the assumption that every

[PATCH v2 3/5] fsck: support referenced lazy objects

2017-07-31 Thread Jonathan Tan
Teach fsck to not treat missing objects indirectly pointed to by refs as an error when extensions.lazyobject is set. Signed-off-by: Jonathan Tan --- builtin/fsck.c | 11 +++ t/t0410-lazy-object.sh | 27 +++ 2 files changed, 38

[PATCH v2 0/5] Fsck for lazy objects, and (now) actual invocation of loader

2017-07-31 Thread Jonathan Tan
Besides review changes, this patch set now includes my rewritten lazy-loading sha1_file patch, so you can now do this (excerpted from one of the tests): test_create_repo server test_commit -C server 1 1.t abcdefgh HASH=$(git hash-object server/1.t) test_create_repo client

[GSoC][PATCH 08/13] submodule: port submodule subcommand 'summary' from shell to C

2017-07-31 Thread Prathamesh Chavan
The submodule subcommand 'summary' is ported in the process of making git-submodule a builtin. The function cmd_summary() from git-submodule.sh is ported to functions module_summary(), compute_summary_module_list(), prepare_submodule_summary() and print_submodule_summary(). The first function

[GSoC][PATCH 11/13] submodule foreach: clarify the '$toplevel' variable documentation

2017-07-31 Thread Prathamesh Chavan
It does not contain the topmost superproject as the author assumed, but the direct superproject, such that $toplevel/$sm_path is the actual absolute path of the submodule. Discussed-with: Ramsay Jones Signed-off-by: Stefan Beller Signed-off-by:

[GSoC][PATCH 05/13] submodule: port submodule subcommand 'sync' from shell to C

2017-07-31 Thread Prathamesh Chavan
Port the submodule subcommand 'sync' from shell to C using the same mechanism as that used for porting submodule subcommand 'status'. Hence, here the function cmd_sync() is ported from shell to C. This is done by introducing three functions: module_sync(), sync_submodule() and

[GSoC][PATCH 07/13] diff: change scope of the function count_lines()

2017-07-31 Thread Prathamesh Chavan
Change the scope of function count_lines for allowing the function to be reused in other parts of the code as well. Mentored-by: Christian Couder Mentored-by: Stefan Beller Signed-off-by: Prathamesh Chavan --- diff.c | 2 +-

[GSoC][PATCH 06/13] submodule: port submodule subcommand 'deinit' from shell to C

2017-07-31 Thread Prathamesh Chavan
The same mechanism is used even for porting this submodule subcommand, as used in the ported subcommands till now. The function cmd_deinit in split up after porting into three functions: module_deinit(), for_each_submodule_list() and deinit_submodule(). Mentored-by: Christian Couder

[GSoC][PATCH 10/13] submodule foreach: document '$sm_path' instead of '$path'

2017-07-31 Thread Prathamesh Chavan
As using a variable '$path' may be harmful to users due to capitalization issues, see 64394e3ae9 (git-submodule.sh: Don't use $path variable in eval_gettext string, 2012-04-17). Adjust the documentation to advocate for using $sm_path, which contains the same value. We still make the 'path'

[GSoC][PATCH 12/13] submodule foreach: document variable '$displaypath'

2017-07-31 Thread Prathamesh Chavan
It was observed that the variable '$displaypath' was accessible but undocumented. Hence, document it. Discussed-with: Ramsay Jones Signed-off-by: Stefan Beller Signed-off-by: Prathamesh Chavan --- In this new version, the

[GSoC][PATCH 13/13] submodule: port submodule subcommand 'foreach' from shell to C

2017-07-31 Thread Prathamesh Chavan
This aims to make git-submodule foreach a builtin. This is the very first step taken in this direction. Hence, 'foreach' is ported to submodule--helper, and submodule--helper is called from git-submodule.sh. The code is split up to have one function to obtain all the list of submodules. This

[GSoC][PATCH 09/13] submodule foreach: correct '$path' in nested submodules from a subdirectory

2017-07-31 Thread Prathamesh Chavan
When running 'git submodule foreach' from a subdirectory of your repository, nested submodules get a bogus value for $sm_path: For a submodule 'sub' that contains a nested submodule 'nested', running 'git -C dir submodule foreach echo $path' would report path='../nested' for the nested submodule.

[GSoC][PATCH 04/13] submodule: port submodule subcommand 'status' from shell to C

2017-07-31 Thread Prathamesh Chavan
This aims to make git-submodule 'status' a built-in. Hence, the function cmd_status() is ported from shell to C. This is done by introducing three functions: module_status(), submodule_status() and print_status(). The function module_status() acts as the front-end of the subcommand. It parses

[GSoC][PATCH 03/13] submodule: port set_name_rev() from shell to C

2017-07-31 Thread Prathamesh Chavan
Function set_name_rev() is ported from git-submodule to the submodule--helper builtin. The function get_name_rev() generates the value of the revision name as required, and the function print_name_rev() handles the formating and printing of the obtained revision name. Mentored-by: Christian

[GSoC][PATCH 02/13] submodule--helper: introduce for_each_submodule_list()

2017-07-31 Thread Prathamesh Chavan
Introduce function for_each_submodule_list() and replace a loop in module_init() with a call to it. The new function will also be used in other parts of the system in later patches. Mentored-by: Christian Couder Mentored-by: Stefan Beller

[GSoC][PATCH 01/13] submodule--helper: introduce get_submodule_displaypath()

2017-07-31 Thread Prathamesh Chavan
Introduce function get_submodule_displaypath() to replace the code occurring in submodule_init() for generating displaypath of the submodule with a call to it. This new function will also be used in other parts of the system in later patches. Mentored-by: Christian Couder

[GSoC][PATCH 00/13] Update: Week-11

2017-07-31 Thread Prathamesh Chavan
SUMMARY OF MY PROJECT: Git submodule subcommands are currently implemented by using shell script 'git-submodule.sh'. There are several reasons why we'll prefer not to use the shell script. My project intends to convert the subcommands into C code, thus making them builtins. This will increase

Re: [PATCH 03/15] add, reset: ensure submodules can be added or reset

2017-07-31 Thread Brandon Williams
On 07/26, Junio C Hamano wrote: > Stefan Beller writes: > > > On Tue, Jul 25, 2017 at 2:39 PM, Brandon Williams wrote: > >> Commit aee9c7d65 (Submodules: Add the new "ignore" config option for > >> diff and status) ... > > > > introduced in 2010, so quite

Re: [PATCH 02/15] submodule: don't use submodule_from_name

2017-07-31 Thread Stefan Beller
On Sun, Jul 30, 2017 at 6:43 AM, Jens Lehmann wrote: > Am 26.07.2017 um 23:06 schrieb Junio C Hamano: >> >> Stefan Beller writes: >> >>> Rereading the archives, there was quite some discussion on the design >>> of these patches, but these lines of code

Re: [PATCH 1/2] doc: fix small issues in SubmittingPatches

2017-07-31 Thread Junio C Hamano
Stefan Beller writes: >> Further, remove duplicated space character. > > https://en.wikipedia.org/wiki/Sentence_spacing > seems like a globally controversial thing. (I assumed > it was some sort of local dialect before researching > it properly) > > I personally do not mind

Re: [PATCH 2/2] t6500: mark tests as SHA1 reliant

2017-07-31 Thread Stefan Beller
On Mon, Jul 31, 2017 at 1:17 PM, Ævar Arnfjörð Bjarmason wrote: > On Mon, Jul 31, 2017 at 1:24 AM, brian m. carlson > wrote: >> On Sun, Jul 30, 2017 at 11:00:19PM +, brian m. carlson wrote: >>> Yes, basically, but a bit more generally. There

Re: [GSoC][PATCH v2 00/13] Update: Week 10

2017-07-31 Thread Brandon Williams
On 07/30, Prathamesh Chavan wrote: > Thank you Brandon Williams for reviewing the previous > patch series. > Also, I'm sorry for repling late to your reviews. The main reason was > to give sufficient time to prepare the next version of each patch as > suggested. No worries,

Re: [PATCH 2/2] t6500: mark tests as SHA1 reliant

2017-07-31 Thread Stefan Beller
On Sun, Jul 30, 2017 at 4:24 PM, brian m. carlson wrote: > On Sun, Jul 30, 2017 at 11:00:19PM +, brian m. carlson wrote: >> Yes, basically, but a bit more generally. There will always be cases in >> which we need to specify an object ID or an arbitrary string

Re: [PATCH 1/2] doc: fix small issues in SubmittingPatches

2017-07-31 Thread Stefan Beller
On Sun, Jul 30, 2017 at 9:18 AM, Kaartic Sivaraam wrote: > Replace the dashed version of a command with undashed > version and quote it. I like it, but similar as below, we'd want to go for consistency. > > Further, remove duplicated space character.

Re: [PATCH 2/2] t6500: mark tests as SHA1 reliant

2017-07-31 Thread Ævar Arnfjörð Bjarmason
On Mon, Jul 31, 2017 at 1:24 AM, brian m. carlson wrote: > On Sun, Jul 30, 2017 at 11:00:19PM +, brian m. carlson wrote: >> Yes, basically, but a bit more generally. There will always be cases in >> which we need to specify an object ID or an arbitrary string

Re: [PATCH v2 00/10] tag: only respect `pager.tag` in list-mode

2017-07-31 Thread Junio C Hamano
Jeff King writes: > On Mon, Jul 31, 2017 at 07:44:27PM +0200, Martin Ågren wrote: > >> On 31 July 2017 at 05:46, Jeff King wrote: >> > On Sun, Jul 23, 2017 at 08:17:42PM +0200, Martin Ågren wrote: >> > >> >> On 21 July 2017 at 00:27, Junio C Hamano

Re: [L10N] Kickoff of translation for Git 2.14.0 round 2

2017-07-31 Thread Junio C Hamano
Jiang Xin writes: > In the last round of l10n, some l10n messages from "date.c" are > disappeared because of the l10n unfriendly PRItime macro. This issue > has been fixed by commit fc0fd5b23b (Makefile: help gettext tools to > cope with our custom PRItime format), so

Re: reftable [v4]: new ref storage format

2017-07-31 Thread Junio C Hamano
Shawn Pearce writes: > ### Peeling > > References in a reftable are always peeled. This hopefully means "a record for an annotated (or signed) tag records both the tag object and the object it refers to", and does not include peeling a commit down to its tree. > ###

Re: reftable [v4]: new ref storage format

2017-07-31 Thread Stefan Beller
On Sun, Jul 30, 2017 at 8:51 PM, Shawn Pearce wrote: > 4th iteration of the reftable storage format. > > You can read a rendered version of this here: > https://googlers.googlesource.com/sop/jgit/+/reftable/Documentation/technical/reftable.md > > Significant changes from v3:

Re: [PATCH v2 06/10] t7006: add tests for how git tag paginates

2017-07-31 Thread Martin Ågren
On 31 July 2017 at 18:37, Junio C Hamano wrote: > Jeff King writes: > >> But here... >> >>> +test_expect_success TTY 'git tag -a respects pager.tag' ' >>> +test_when_finished "git tag -d newtag" && >>> +rm -f paginated.out && >>> +test_terminal git

Re: [PATCH v2 10/10] git.c: ignore pager.* when launching builtin as dashed external

2017-07-31 Thread Martin Ågren
On 31 July 2017 at 05:45, Jeff King wrote: > On Mon, Jul 17, 2017 at 10:10:52PM +0200, Martin Ågren wrote: > >> One could address this in run_argv(), by making the second call to >> execv_dashed_external() conditional on "!is_builtin()" whereas a builtin >> would be started as "git

Re: [PATCH v2 00/10] tag: only respect `pager.tag` in list-mode

2017-07-31 Thread Martin Ågren
On 31 July 2017 at 05:46, Jeff King wrote: > On Sun, Jul 23, 2017 at 08:17:42PM +0200, Martin Ågren wrote: > >> On 21 July 2017 at 00:27, Junio C Hamano wrote: >> > I tend to agree with you that 1-3/10 may be better off being a >> > single patch (or 3/10

Re: [PATCH v2 00/10] tag: only respect `pager.tag` in list-mode

2017-07-31 Thread Jeff King
On Mon, Jul 31, 2017 at 07:44:27PM +0200, Martin Ågren wrote: > On 31 July 2017 at 05:46, Jeff King wrote: > > On Sun, Jul 23, 2017 at 08:17:42PM +0200, Martin Ågren wrote: > > > >> On 21 July 2017 at 00:27, Junio C Hamano wrote: > >> > I tend to agree with you

Re: reftable [v4]: new ref storage format

2017-07-31 Thread Dave Borowitz
On Sun, Jul 30, 2017 at 11:51 PM, Shawn Pearce wrote: > - Near constant time verification a SHA-1 is referred to by at least > one reference (for allow-tip-sha1-in-want). I think I understated the importance of this when I originally brought up allow-tip-sha1-in-want. This

Re: [PATCH] Fix minor typo in git-diff docs.

2017-07-31 Thread Anthony Sottile
Thanks! I'll keep this in mind next time I send a patch. Anthony On Mon, Jul 31, 2017 at 9:59 AM, Junio C Hamano wrote: > Anthony Sottile writes: > >> diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt >> index 89cc0f4..43d18a4

git checkout-index --all --force does not restore all files when `core.autocrlf` is set to `input`

2017-07-31 Thread Anthony Sottile
I'm not sure if this is a bug or the intended behaviour. Here's my minimal reproduction (using python3 to write files so I can control line endings) ``` #!/bin/bash set -ex rm -rf repo git init repo cd repo git config --local core.autocrlf input python3 -c 'open("foo",

Re: [PATCH] Fix minor typo in git-diff docs.

2017-07-31 Thread Junio C Hamano
Anthony Sottile writes: > diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt > index 89cc0f4..43d18a4 100644 > --- a/Documentation/diff-options.txt > +++ b/Documentation/diff-options.txt > @@ -392,7 +392,7 @@ endif::git-log[] > the diff

Re: [PATCH] Fix minor typo in git-diff docs.

2017-07-31 Thread Junio C Hamano
Anthony Sottile writes: > To be honest, I'm a bit overwhelmed by the documentation for submitting a > patch! > > I tried to follow as best I could, here's my attempt (please advise). OK ;-) Thanks for a patch. Let's nitpick. Our titles (your "Subject:" line in the e-mail

Re: [PATCH v2 06/10] t7006: add tests for how git tag paginates

2017-07-31 Thread Junio C Hamano
Jeff King writes: > But here... > >> +test_expect_success TTY 'git tag -a respects pager.tag' ' >> +test_when_finished "git tag -d newtag" && >> +rm -f paginated.out && >> +test_terminal git -c pager.tag tag -am message newtag && >> +test -e paginated.out >> +' > >

Re: [PATCH v2 05/10] git.c: provide setup_auto_pager()

2017-07-31 Thread Junio C Hamano
Jeff King writes: > But thinking on it, the most plausible case is something like: > > setup_auto_pager("foo", -1); > ... > /* fallback to some historical compatibility name */ > setup_auto_pager("bar", 0); > > And it's important for the "-1" there to be a true punt, and

[PATCH] Fix minor typo in git-diff docs.

2017-07-31 Thread Anthony Sottile
To be honest, I'm a bit overwhelmed by the documentation for submitting a patch! I tried to follow as best I could, here's my attempt (please advise). >From e88ad689a7587c11f270a10f191a3b6bc52a90d4 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 31 Jul 2017

Re: Contact with Latinamerica

2017-07-31 Thread Christopher Díaz
> You may also want to look at the https://git-scm.com/book/en/v2 free > book  > which can be translated by volunteers, and is possibly one of the > first  > ports of call for most users (top or near-top of search engine hits) > Thanks for that info, I've already read that one a couple of weeks

Re: Contact with Latinamerica

2017-07-31 Thread Philip Oakley
From: "Christopher Díaz" Hi Christopher, I've included the Git list to keep the discussion open to all the community. (we usually use reply all) El dom, 30-07-2017 a las 19:01 +0100, Philip Oakley escribió: Hi Philip, Thank you very much for such a fast

Loan Offer

2017-07-31 Thread Sec Capital Loans
Loan Offer at 3%, Feel Free to REPLY back to us for more info.