create_branch: drop unused "head" parameter

This function used to have the caller pass in the current
value of HEAD, in order to make sure we didn't clobber HEAD.
In 55c4a6730, that logic moved to validate_new_branchname(),
which just resolves HEAD itself. The parameter to
create_branch is now unused.

Since we have to update and re-wrap the docstring describing
the parameters anyway, let's take this opportunity to break
it out into a list, which makes it easier to find the
parameters.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King
2016-11-04 12:30:12 -04:00
committed by Junio C Hamano
parent 0202c411ed
commit 4bd488ea7c
4 changed files with 18 additions and 13 deletions

View File

@ -628,7 +628,7 @@ static void update_refs_for_switch(const struct checkout_opts *opts,
}
}
else
create_branch(old->name, opts->new_branch, new->name,
create_branch(opts->new_branch, new->name,
opts->new_branch_force ? 1 : 0,
opts->new_branch_log,
opts->new_branch_force ? 1 : 0,