Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-11-18 00:45:21 +0300
committerJunio C Hamano <gitster@pobox.com>2016-11-18 00:45:21 +0300
commit6846e8734d3c9e4d6cbe8a8ba27dae414aa5aff1 (patch)
tree32c2d6d60e2bce72ccdd460138cefabffaa31366 /branch.c
parent166251c32e69e9a66913c62e9263135f8ae103e6 (diff)
parent4bd488ea7c56b673947b07511d26f2afc4ec0bd6 (diff)
Merge branch 'jk/create-branch-remove-unused-param'
Code clean-up. * jk/create-branch-remove-unused-param: create_branch: drop unused "head" parameter
Diffstat (limited to 'branch.c')
-rw-r--r--branch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/branch.c b/branch.c
index a5a8dcbd0e..0d459b3cfe 100644
--- a/branch.c
+++ b/branch.c
@@ -228,8 +228,7 @@ N_("\n"
"will track its remote counterpart, you may want to use\n"
"\"git push -u\" to set the upstream config as you push.");
-void create_branch(const char *head,
- const char *name, const char *start_name,
+void create_branch(const char *name, const char *start_name,
int force, int reflog, int clobber_head,
int quiet, enum branch_track track)
{