Re: [PATCH 3/3] rebase: turn git-rebase--*.sh into separate programs

2016-02-17 Thread Matthieu Moy
Nguyễn Thái Ngọc Duy writes: > + git_quiet=$GIT_QUIET > + git_reflog_action=$GIT_REFLOG_ACTION > + export GIT_PAGER > + # these are for write_basic_state() > + export allow_rerere_autoupdate gpg_sign_opt head_name onto > + export orig_head state_dir strategy strategy_opts

[PATCH 3/3] rebase: turn git-rebase--*.sh into separate programs

2016-02-17 Thread Nguyễn Thái Ngọc Duy
This is the first step of turning any of these scripts into C. We can see now what variables are exchanged between git-rebase.sh and the subscript (but we don't see all in this patch, variables may have been exported earlier in git-rebase.sh) Signed-off-by: Nguyễn Thái Ngọc Duy --- Makefile