Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-11-02 10:53:24 +0300
committerJunio C Hamano <gitster@pobox.com>2023-11-02 10:53:25 +0300
commit905765bc5b4bf58e9fb084fa94051fbb0fbf3d13 (patch)
tree44f64de26bbc80ffff217efa68e9d9e35355aaa2
parent71c614b9a2672d035ef663340e69de9e2ac72562 (diff)
parent58be11432edfe2fc9887266fe9dbc450b5547e78 (diff)
Merge branch 'eg/config-type-path-docfix' into maint-2.42
Typofix. * eg/config-type-path-docfix: git-config: fix misworded --type=path explanation
-rw-r--r--Documentation/git-config.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt
index 7a2bcb2f6c..b1caac887a 100644
--- a/Documentation/git-config.txt
+++ b/Documentation/git-config.txt
@@ -201,7 +201,7 @@ Valid `<type>`'s include:
1073741824 upon input.
- 'bool-or-int': canonicalize according to either 'bool' or 'int', as described
above.
-- 'path': canonicalize by adding a leading `~` to the value of `$HOME` and
+- 'path': canonicalize by expanding a leading `~` to the value of `$HOME` and
`~user` to the home directory for the specified user. This specifier has no
effect when setting the value (but you can use `git config section.variable
~/` from the command line to let your shell do the expansion.)