Change "remote tracking" to "remote-tracking"
Fix a typo ("remote remote-tracking") going back to the big cleanup
in 2010 (8b3f3f84
etc). Also, remove some more occurrences of
"tracking" and "remote tracking" in favor of "remote-tracking".
Signed-off-by: Michael Schubert <mschub@elegosoft.com>
Reviewed-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
f66d000b0d
commit
d6ac1d2120
@ -948,7 +948,7 @@ static int evaluate_result(void)
|
||||
}
|
||||
|
||||
/*
|
||||
* Pretend as if the user told us to merge with the tracking
|
||||
* Pretend as if the user told us to merge with the remote-tracking
|
||||
* branch we have for the upstream of the current branch
|
||||
*/
|
||||
static int setup_with_upstream(const char ***argv)
|
||||
@ -967,7 +967,7 @@ static int setup_with_upstream(const char ***argv)
|
||||
args = xcalloc(branch->merge_nr + 1, sizeof(char *));
|
||||
for (i = 0; i < branch->merge_nr; i++) {
|
||||
if (!branch->merge[i]->dst)
|
||||
die(_("No remote tracking branch for %s from %s"),
|
||||
die(_("No remote-tracking branch for %s from %s"),
|
||||
branch->merge[i]->src, branch->remote_name);
|
||||
args[i] = branch->merge[i]->dst;
|
||||
}
|
||||
|
Reference in New Issue
Block a user