Skip to content

Commit

Permalink
Add verbose option to built in git commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pistos committed Jul 28, 2009
1 parent 1e69632 commit da8966b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tig.c
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ static void
add_builtin_run_requests(void)
{
const char *cherry_pick[] = { "git", "cherry-pick", "%(commit)", NULL };
const char *commit[] = { "git", "commit", NULL };
const char *commit[] = { "git", "commit", "-v", NULL };
const char *gc[] = { "git", "gc", NULL };
struct {
enum keymap keymap;
Expand Down Expand Up @@ -7373,8 +7373,8 @@ parse_options(int argc, const char *argv[])
die("command too long");
}

if (!prepare_update(VIEW(request), custom_argv, NULL, FORMAT_NONE))
die("Failed to format arguments");
if (!prepare_update(VIEW(request), custom_argv, NULL, FORMAT_NONE))
die("Failed to format arguments");

return request;
}
Expand Down

0 comments on commit da8966b

Please sign in to comment.