[PATCH 1/1] mingw: remove obsolete IPv6-related code

2019-02-27 Thread Tanushree Tumane via GitGitGadget
From: Tanushree Tumane To support IPv6, Git provided fall back functions for Windows versions that did not support IPv6. However, as Git dropped support for Windows XP and prior, those functions are not needed anymore. Remove those fallbacks by reverting fe3b2b7b827c (Enable support for IPv6 on

[PATCH 03/26] bisect--helper: `decide_next()` helper function.

2019-02-24 Thread Tanushree Tumane via GitGitGadget
From: Tanushree Tumane introduce `decide_next()` helper function from `bisect_next_check()` for better and clear understanding. convert `*...warning` char pointers to `...warning[]`char arrays, as char [] only creates char array while char * creates both char array and a pointer to that char arr

[PATCH 02/26] bisect--helper: change `retval` to `res`

2019-02-24 Thread Tanushree Tumane via GitGitGadget
From: Tanushree Tumane Conversion of variable `retval` to `res` to have a uniformity of a single variable all over the patch series, which makes the patch series unvaried. Mentored-by: Christian Couder Signed-off-by: Tanushree Tumane --- builtin/bisect--helper.c | 50 -

[PATCH 00/26] Git bisect part3

2019-02-24 Thread Tanushree Tumane via GitGitGadget
Changes since pranit’s v15 patch series === bisect--helper: refer branch.buf before strbuf_release(...) === bisect--helper: change retval to res bisect--helper: decide

[PATCH 01/26] bisect--helper: refer branch.buf before strbuf_release(...)

2019-02-24 Thread Tanushree Tumane via GitGitGadget
From: Tanushree Tumane move `error("...%s...", branch.buf);` before `strbuf_release(&branch);`. add ' ' before "reset.." in error message. Mentored-by: Johannes Schindelin Mentored-by: Christian Couder Signed-off-by: Tanushree Tumane --- builtin/bisect--helper.c | 7 --- 1 file changed,

[PATCH v17 0/7] git bisect: convert from shell to C

2019-01-02 Thread Tanushree Tumane via GitGitGadget
Changes since Pranit's v16: === bisect--helper: bisect_reset shell function in C * The return !printf(...); construct was considered unsafe and disentangled into printf(...); return 0; * It is more elegant to release br