shortlog: disallow left-over arguments outside repo
commit4aa0161e837ef19e52f3bc65471d9ec0f857e20d
authorMartin Ågren <martin.agren@gmail.com>
Wed, 14 Mar 2018 21:34:19 +0000 (14 22:34 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 15 Mar 2018 17:37:32 +0000 (15 10:37 -0700)
treea675132df9ae151aeee1d6f9311b1334cbe0edb8
parentcd56d4e5b2ca315d51699984456e50e4c6715f49
shortlog: disallow left-over arguments outside repo

If we are outside a repo and have any arguments left after
option-parsing, `setup_revisions()` will try to do its job and
something like this will happen:

$ git shortlog v2.16.0..
BUG: environment.c:183: git environment hasn't been setup
Aborted (core dumped)

The usage is wrong, but we could obviously handle this better. Note that
commit abe549e179 (shortlog: do not require to run from inside a git
repository, 2008-03-14) explicitly enabled `git shortlog` to run from
outside a repo, since we do not need a repo for parsing data from stdin.

Disallow left-over arguments when run from outside a repo.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/shortlog.c
t/t4201-shortlog.sh