aboutsummaryrefslogtreecommitdiff
path: root/builtin-checkout.c
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2009-03-21 11:00:54 +0200
committerJunio C Hamano <gitster@pobox.com>2009-04-07 23:04:45 -0700
commit714fddf2fc50cd5abb11d75837e6340edb9601f6 (patch)
treecb4c64ed7df155fbb093fd72786b54274532bfb2 /builtin-checkout.c
parent835a3eea3e18695e29b1d4c3adca37d1caaa16ef (diff)
downloadgit-714fddf2fc50cd5abb11d75837e6340edb9601f6.tar.gz
git-714fddf2fc50cd5abb11d75837e6340edb9601f6.tar.xz
Change double quotes to single quotes in message
Most of the time when we give branch name in the message, we quote it inside a pair of single-quotes. git-checkout uses double-quotes; this patch corrects the inconsistency. Signed-off-by: Jari Aalto <jari.aalto@cante.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-checkout.c')
-rw-r--r--builtin-checkout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-checkout.c b/builtin-checkout.c
index 20b34ce6e..ed0f318c0 100644
--- a/builtin-checkout.c
+++ b/builtin-checkout.c
@@ -501,10 +501,10 @@ static void update_refs_for_switch(struct checkout_opts *opts,
create_symref("HEAD", new->path, msg.buf);
if (!opts->quiet) {
if (old->path && !strcmp(new->path, old->path))
- fprintf(stderr, "Already on \"%s\"\n",
+ fprintf(stderr, "Already on '%s'\n",
new->name);
else
- fprintf(stderr, "Switched to%s branch \"%s\"\n",
+ fprintf(stderr, "Switched to%s branch '%s'\n",
opts->new_branch ? " a new" : "",
new->name);
}
@@ -513,7 +513,7 @@ static void update_refs_for_switch(struct checkout_opts *opts,
REF_NODEREF, DIE_ON_ERR);
if (!opts->quiet) {
if (old->path)
- fprintf(stderr, "Note: moving to \"%s\" which isn't a local branch\nIf you want to create a new branch from this checkout, you may do so\n(now or later) by using -b with the checkout command again. Example:\n git checkout -b <new_branch_name>\n", new->name);
+ fprintf(stderr, "Note: moving to '%s' which isn't a local branch\nIf you want to create a new branch from this checkout, you may do so\n(now or later) by using -b with the checkout command again. Example:\n git checkout -b <new_branch_name>\n", new->name);
describe_detached_head("HEAD is now at", new->commit);
}
}