Re: [PATCH v3] Make running git under other debugger-like programs easy

2018-04-25 Thread Junio C Hamano
Johannes Schindelin writes: >> ... >> >> There is also a handy shortcut of GIT_DEBUGGER=1 meaning the same as >> GIT_DEBUGGER="gdb --args" >> >> Original-patch-by: Johannes Schindelin >> Signed-off-by: Elijah Newren > > Looks good to me! > Dscho Thanks, both.

Re: [PATCH v3] Make running git under other debugger-like programs easy

2018-04-25 Thread Johannes Schindelin
Hi Elijah, On Tue, 24 Apr 2018, Elijah Newren wrote: > This allows us to run git, when using the script from bin-wrappers, under > other programs. A few examples for usage within testsuite scripts: > >debug git checkout master >debug --debugger=nemiver git $ARGS >debug -d "valgrind

[PATCH v3] Make running git under other debugger-like programs easy

2018-04-24 Thread Elijah Newren
This allows us to run git, when using the script from bin-wrappers, under other programs. A few examples for usage within testsuite scripts: debug git checkout master debug --debugger=nemiver git $ARGS debug -d "valgrind --tool-memcheck --track-origins=yes" git $ARGS Or, if someone has