diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-12-08 14:05:02 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-08 14:05:02 -0800 |
commit | 22386ad6ee427453588936f872d6e0d8dd6cf751 (patch) | |
tree | 9a7e1320ed835c73f712fa4482da45a27a371f0a | |
parent | 697bd2871cd04357ced89b962d39eb685dab47ca (diff) | |
parent | cbd9fc2366abd6bd4bd3a544e2fe438b53ca0d2f (diff) | |
download | git-22386ad6ee427453588936f872d6e0d8dd6cf751.tar.gz git-22386ad6ee427453588936f872d6e0d8dd6cf751.tar.xz |
Merge branch 'jk/interpret-trailers-outside-a-repository' into maint
Allow "git interpret-trailers" to run outside of a Git repository.
* jk/interpret-trailers-outside-a-repository:
interpret-trailers: allow running outside a repository
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |