06d30f4f3e
During git-merge-recur development, you could set an environment variable GIT_USE_RECUR_FOR_RECURSIVE to use WIP recur in place of the recursive strategy. Signed-off-by: Junio C Hamano <junkio@cox.net>
15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
cd t || exit
|
|
GIT_USE_RECUR_FOR_RECURSIVE=LetsTryIt
|
|
export GIT_USE_RECUR_FOR_RECURSIVE
|
|
|
|
./t3400-rebase.sh "$@" &&
|
|
./t6020-merge-df.sh "$@" &&
|
|
./t3401-rebase-partial.sh "$@" &&
|
|
./t6021-merge-criss-cross.sh "$@" &&
|
|
./t3402-rebase-merge.sh "$@" &&
|
|
./t6022-merge-rename.sh "$@" &&
|
|
./t6010-merge-base.sh "$@" &&
|
|
:
|