[PATCH] doc: fix typos in release notes

2018-11-05 Thread orgads
From: Orgad Shaneh Signed-off-by: Orgad Shaneh --- Documentation/RelNotes/2.20.0.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/RelNotes/2.20.0.txt b/Documentation/RelNotes/2.20.0.txt index 4b546d025f..bc0f4e8237 100644 ---

[PATCH] add a test for "describe --contains" with mixed tags

2017-10-24 Thread orgads
From: Orgad Shaneh If a repository has early lightweight tags and annotated tags later, running git describe --contains for an early commit used the annotated tag for reference, instead of the lightweight tag which was closer. This has been fixed in

[PATCH] add a test for "describe --contains" with mixed tags

2017-10-19 Thread orgads
From: Orgad Shaneh --- t/t6120-describe.sh | 16 1 file changed, 16 insertions(+) diff --git a/t/t6120-describe.sh b/t/t6120-describe.sh index 1c0e865..08427f4 100755 --- a/t/t6120-describe.sh +++ b/t/t6120-describe.sh @@ -340,4 +340,20 @@ test_expect_success

[PATCH] name-rev: Fix tag lookup on repository with mixed types of tags

2017-10-18 Thread orgads
From: Orgad Shaneh Commit 7550424804 (name-rev: include taggerdate in considering the best name) introduced a bug in name-rev. If a repository has both annotated and non-annotated tags, annotated tag will always win, even if it was created decades after the commit. Consider a

[PATCH] name-rev: Fix tag lookup on repository with mixed types of tags

2017-06-22 Thread orgads
From: Orgad Shaneh Commit 7550424804 (name-rev: include taggerdate in considering the best name) introduced a bug in name-rev. If a repository has both annotated and non-annotated tags, annotated tag will always win, even if it was created decades after the commit. Consider a

[PATCH v2] merge: Run commit-msg hook

2016-07-26 Thread orgads
From: Orgad Shaneh commit-msg is needed to either validate the commit message or edit it. Gerrit for instance uses this hook to append its Change-Id footer. The hook is installed on the user's machine, and it is expected to append the footer for each commit that the user

[PATCH v2] commit: Fix description of no-verify

2016-07-26 Thread orgads
From: Orgad Shaneh include also commit-msg hook. This brings the short help in line with the documentation. Signed-off-by: Orgad Shaneh --- builtin/commit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/commit.c