From: Junio C Hamano Date: Mon, 5 Oct 2015 19:30:16 +0000 (-0700) Subject: Merge branch 'jk/interpret-trailers-outside-a-repository' X-Git-Tag: v2.7.0-rc0~139 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/ebb58652b2eb422d649b001465f2f5580914220a?hp=a66aa25afbd957bf0ab25d8875d42d28b921c09e Merge branch 'jk/interpret-trailers-outside-a-repository' Allow "git interpret-trailers" to run outside of a Git repository. * jk/interpret-trailers-outside-a-repository: interpret-trailers: allow running outside a repository --- diff --git a/git.c b/git.c index 5feba410ca..40f9df0897 100644 --- a/git.c +++ b/git.c @@ -417,7 +417,7 @@ static struct cmd_struct commands[] = { { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY }, { "init", cmd_init_db, NO_SETUP }, { "init-db", cmd_init_db, NO_SETUP }, - { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP }, + { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY }, { "log", cmd_log, RUN_SETUP }, { "ls-files", cmd_ls_files, RUN_SETUP }, { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },