replace: refactor command-mode determination
commit3f495f67bc4ec744ac60f6e7bec0924022670998
authorJeff King <peff@peff.net>
Sat, 26 Apr 2014 20:00:54 +0000 (26 22:00 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 29 Apr 2014 19:38:32 +0000 (29 12:38 -0700)
tree68e3ceba28e34aaf183d72f01b5dabf75bd9259c
parentd8779e1e2536bdd024254af14d2c046bba2bbb01
replace: refactor command-mode determination

The git-replace command has three modes: listing, deleting,
and replacing. The first two are selected explicitly. If
none is selected, we fallback to listing when there are no
arguments, and replacing otherwise.

Let's figure out up front which operation we are going to
do, before getting into the application logic. That lets us
simplify our option checks (e.g., we currently have to check
whether a useless "--force" is given both along with an
explicit list, as well as with an implicit one).

This saves some lines, makes the logic easier to follow, and
will facilitate further cleanups.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/replace.c