aboutsummaryrefslogtreecommitdiffstats
path: root/branch.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-03-21 12:51:34 -0700
committerJunio C Hamano <gitster@pobox.com>2009-03-22 23:36:47 -0700
commit431b1969fcde69959a23355fba6894fb69c8fa0c (patch)
treef8abd4ca9650a62e3b46a0e35ce083654e71bcec /branch.c
parent91408042768c05347c1b9f081a00387ca07b26fe (diff)
downloadgit-431b1969fcde69959a23355fba6894fb69c8fa0c.tar.gz
Rename interpret/substitute nth_last_branch functions
These allow you to say "git checkout @{-2}" to switch to the branch two "branch switching" ago by pretending as if you typed the name of that branch. As it is likely that we will be introducing more short-hands to write the name of a branch without writing it explicitly, rename the functions from "nth_last_branch" to more generic "branch_name", to prepare for different semantics. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'branch.c')
-rw-r--r--branch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/branch.c b/branch.c
index 5f889fee6b..313bcf1634 100644
--- a/branch.c
+++ b/branch.c
@@ -137,7 +137,7 @@ void create_branch(const char *head,
int len;
len = strlen(name);
- if (interpret_nth_last_branch(name, &ref) != len) {
+ if (interpret_branch_name(name, &ref) != len) {
strbuf_reset(&ref);
strbuf_add(&ref, name, len);
}