diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-11-02 16:53:19 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-11-02 16:53:19 +0900 |
| commit | 83442ded89b726f4156c8e702308dd84d7e43bf2 (patch) | |
| tree | 546723e158282b11f0806eb2abcd5c453cd6df7b | |
| parent | Merge branch 'js/diff-cached-fsmonitor-fix' into maint-2.42 (diff) | |
| parent | completion: improve doc for complex aliases (diff) | |
| download | git-83442ded89b726f4156c8e702308dd84d7e43bf2.tar.gz git-83442ded89b726f4156c8e702308dd84d7e43bf2.zip | |
Merge branch 'pb/completion-aliases-doc' into maint-2.42
Clarify how "alias.foo = : git cmd ; aliased-command-string" should
be spelled with necessary whitespaces around punctuation marks to
work.
* pb/completion-aliases-doc:
completion: improve doc for complex aliases
| -rw-r--r-- | contrib/completion/git-completion.bash | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 745dc901fb..55950057c8 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -28,6 +28,7 @@ # completion style. For example '!f() { : git commit ; ... }; f' will # tell the completion to use commit completion. This also works with aliases # of form "!sh -c '...'". For example, "!sh -c ': git commit ; ... '". +# Be sure to add a space between the command name and the ';'. # # If you have a command that is not part of git, but you would still # like completion, you can use __git_complete: |
