[ANNOUNCE] Git for Windows 2.22.0

2019-06-08 Thread Johannes Schindelin
Dear Git users, It is my pleasure to announce that Git for Windows 2.22.0 is available from: https://gitforwindows.org/ Changes since Git for Windows v2.21.0 (February 26th 2019) New Features * Comes with Git v2.22.0. * The awk included in Git for Windows now includes extensions su

Expression of Intent

2019-06-08 Thread Mr .Asher Chanan
Dear Sir/Madam, My name is Mr.Asher Chanan. This email is in soliciting your assistance for a mutual benefitting business proposal. Kindly indicate your interest by replying this email and I would be glad to furnish you with the details. I look forward to a mutually benefitting relationship. Warm

[PATCH 1/1] diffcore-rename: speed up register_rename_src

2019-06-08 Thread Jeff Hostetler via GitGitGadget
From: Jeff Hostetler Teach register_rename_src() to see if new file pair can simply be appended to the rename_src[] array before performing the binary search to find the proper insertion point. This is a performance optimization. This routine is called during run_diff_files in status and the ca

[PATCH 0/1] Optimize run_diff_files()' rename detection

2019-06-08 Thread Johannes Schindelin via GitGitGadget
Just another patch from Git for Windows' branch thicket... Jeff Hostetler (1): diffcore-rename: speed up register_rename_src diffcore-rename.c | 13 + 1 file changed, 13 insertions(+) base-commit: 8104ec994ea3849a968b4667d072fedd1e688642 Published-As: https://github.com/gitgitga

[PATCH 0/1] Fix a test on NTFS (and probably HFS+)

2019-06-08 Thread Johannes Schindelin via GitGitGadget
My colleague Jameson Miller once presented me with a nice puzzle why the test suite failed on their system. Turns out that it is possible in PowerShell to spell the directory with a different case than on disk in cd , and subsequent calls to get the current working directory will use that case, ra

[PATCH 1/1] t0001: fix on case-insensitive filesystems

2019-06-08 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin On a case-insensitive filesystem, such as HFS+ or NTFS, it is possible that the idea Bash has of the current directory differs in case from what Git thinks it is. That's totally okay, though, and we should not expect otherwise. Reported by Jameson Miller. Signed-off-by

Business Intent

2019-06-08 Thread Mr .Asher Chanan
Dear Sir/Madam, My name is Mr.Asher Chanan. This email is in soliciting your assistance for a mutual benefitting business proposal. Kindly indicate your interest by replying this email and I would be glad to furnish you with the details. I look forward to a mutually benefitting relationship. Warm

Re: New command/tool: git filter-repo

2019-06-08 Thread Elijah Newren
Hi, Now that there's a released version of git that has all necessary flags and features[1] to run git filter-repo (https://github.com/newren/git-filter-repo), I thought I'd send an update... On Fri, Feb 8, 2019 at 10:53 AM Ævar Arnfjörð Bjarmason wrote: > On Thu, Jan 31 2019, Elijah Newren wrot

[GSoC][PATCH 1/3] sequencer: add advice for revert

2019-06-08 Thread Rohit Ashiwal
In the case of merge conflicts, while performing a revert, we are currently advised to use `git cherry-pick --` of which --continue is incompatible for continuing the revert. Introduce a separate advice message for `git revert`. Signed-off-by: Rohit Ashiwal --- sequencer.c | 1 + 1 file changed,

[GSoC][PATCH 2/3] cherry-pick/revert: add --skip option

2019-06-08 Thread Rohit Ashiwal
git am or rebase advise the user to use `git (am | rebase) --skip` to skip the commit. cherry-pick and revert also have this concept of skipping commits but they advise the user to use `git reset` (or in case of a patch which had conflicts, `git reset --merge`) which on the user's part is annoying

[GSoC][PATCH 0/3] Teach cherry-pick/revert to skip commits

2019-06-08 Thread Rohit Ashiwal
git am or rebase advice user to use git am --skip or git rebase --skip to skip the commit that has become empty or has risen conflicts. OTOH, cherry-pick advice user to use git reset HEAD which on the user’s part is annoying and sometimes confusing. This patch series will bring consistency between

[GSoC][PATCH 3/3] cherry-pick/revert: update hints

2019-06-08 Thread Rohit Ashiwal
Signed-off-by: Rohit Ashiwal --- builtin/commit.c | 13 - sequencer.c | 4 ++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/builtin/commit.c b/builtin/commit.c index 1c9e8e2228..1f47c51bdc 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -60,15 +60,18

Re: Git Test Coverage Report (Thursday, June 6 2019)

2019-06-08 Thread Philip Oakley
Hi Stollee On 07/06/2019 02:19, Derrick Stolee wrote: Here is today's test coverage report. Thanks, -Stolee [1] https://derrickstolee.github.io/git-test-coverage/reports/2019-06-06.htm [2] https://derrickstolee.github.io/git-test-coverage/reports/2019-06-06.txt --- pu 4f91bbec8a3cc2fff4

Re: [PATCH 1/1] diffcore-rename: speed up register_rename_src

2019-06-08 Thread René Scharfe
Am 08.06.19 um 16:42 schrieb Jeff Hostetler via GitGitGadget: > From: Jeff Hostetler > > Teach register_rename_src() to see if new file pair > can simply be appended to the rename_src[] array before > performing the binary search to find the proper insertion > point. > > This is a performance opti

Wright's Media | Licensing, Reprints, E-prints Request

2019-06-08 Thread April Joy Diaz
https://info.wrightsmedia.com/licensing-reprints-request gabriel...@gmail.com

[PATCH 1/3] t/helper: add test-oidmap.c

2019-06-08 Thread Christian Couder
This new helper is very similar to "test-hashmap.c" and will help test how `struct oidmap` from oidmap.{c,h} can be used. Signed-off-by: Christian Couder --- Makefile | 1 + t/helper/test-oidmap.c | 134 + t/helper/test-tool.c | 1 + t/

[PATCH 2/3] t: add t0016-oidmap.sh

2019-06-08 Thread Christian Couder
From: Christian Couder Add actual tests for operations using `struct oidmap` from oidmap.{c,h}. Signed-off-by: Christian Couder --- t/t0016-oidmap.sh | 100 ++ 1 file changed, 100 insertions(+) create mode 100755 t/t0016-oidmap.sh diff --git a/t/t0

[PATCH 3/3] oidmap: use sha1hash() instead of static hash() function

2019-06-08 Thread Christian Couder
From: Christian Couder Get rid of the static hash() function in oidmap.c which is redundant with sha1hash(). Use sha1hash() directly instead. Let's be more consistent and not use several hash functions doing nearly exactly the same thing. Signed-off-by: Christian Couder --- oidmap.c | 13 +++-

[PATCH 0/3] Test oidmap

2019-06-08 Thread Christian Couder
From: Christian Couder Unlike hashmap that has t/helper/test-hashmap.c and t/t0011-hashmap.sh oidmap has no specific test. The goal of this small patch series is to change that and also improve oidmap a bit while at it. Christian Couder (3): t/helper: add test-oidmap.c t: add t0016-oidmap.sh