From: Emily Shaffer <emilyshaffer@xxxxxxxxxx> It's possible a user may complain about the way that Git interacts with their interactive shell, e.g. autocompletion or shell prompt. In that case, it's useful for us to know which shell they're using interactively. Signed-off-by: Emily Shaffer <emilyshaffer@xxxxxxxxxx> --- bugreport.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bugreport.c b/bugreport.c index 73f6d39517..07b84b9c94 100644 --- a/bugreport.c +++ b/bugreport.c @@ -22,6 +22,7 @@ static void get_system_info(struct strbuf *sys_info) { struct strbuf version_info = STRBUF_INIT; struct utsname uname_info; + char *shell = NULL; /* get git version from native cmd */ strbuf_addstr(sys_info, "git version:\n"); @@ -44,6 +45,10 @@ static void get_system_info(struct strbuf *sys_info) get_compiler_info(sys_info); strbuf_complete_line(sys_info); + shell = getenv("SHELL"); + strbuf_addf(sys_info, "$SHELL (typically, interactive shell): %s\n", + shell ? shell : "(NULL)"); + strbuf_addstr(sys_info, "git-remote-https --build-info:\n"); get_curl_version_info(sys_info); strbuf_complete_line(sys_info); -- 2.25.0.341.g760bfbb309-goog