diff options
| author | Jacob Abel <jacobabel@nullpo.dev> | 2023-08-11 23:39:51 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-08-13 16:35:37 -0700 |
| commit | fdc9914c28355a09a55725b2cd1798446b76d615 (patch) | |
| tree | 2f1a4a178f558c97694a5c3670476b617dbf9298 | |
| parent | 926c40d04b5a77e00d3b22a5d2696c22b81569cc (diff) | |
| download | git-fdc9914c28355a09a55725b2cd1798446b76d615.tar.xz | |
builtin/worktree.c: fix typo in "forgot fetch" msg
Replace misspelled word "overide" with correctly spelled "override".
Reported-By: Teng Long <dyroneteng@gmail.com>
Signed-off-by: Jacob Abel <jacobabel@nullpo.dev>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | builtin/worktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c index 5f62084334..2901bfd936 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -691,7 +691,7 @@ static int can_use_remote_refs(const struct add_opts *opts) return 1; } else if (!opts->force && remote_get(NULL)) { die(_("No local or remote refs exist despite at least one remote\n" - "present, stopping; use 'add -f' to overide or fetch a remote first")); + "present, stopping; use 'add -f' to override or fetch a remote first")); } return 0; } |
