File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,15 @@ scripting Git:
9090 for long options. An option that takes optional option-argument must be
9191 written in the 'stuck' form.
9292
93+ * Despite the above suggestion, when Arg is a path relative to the
94+ home directory of a user, e.g. ~/directory/file or ~u/d/f, you
95+ may want to use the separate form, e.g. `git foo --file ~/mine`,
96+ not `git foo --file=~/mine`. The shell will expand `~/` in the
97+ former to your home directory, but most shells keep the tilde in
98+ the latter. Some of our commands know how to tilde-expand the
99+ option value even when given in the stuck form, but not all of
100+ them do.
101+
93102 * When you give a revision parameter to a command, make sure the parameter is
94103 not ambiguous with a name of a file in the work tree. E.g. do not write
95104 `git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
Original file line number Diff line number Diff line change @@ -242,6 +242,12 @@ Here are some example specifications:
242242[credential]
243243 helper = "foo --bar='whitespace arg'"
244244
245+ # store helper (discouraged) with custom location for the db file;
246+ # use `--file ~/.git-secret.txt`, rather than `--file=~/.git-secret.txt`,
247+ # to allow the shell to expand tilde to the home directory.
248+ [credential]
249+ helper = "store --file ~/.git-secret.txt"
250+
245251# you can also use an absolute path, which will not use the git wrapper
246252[credential]
247253 helper = "/path/to/my/helper --with-arguments"
You can’t perform that action at this time.
0 commit comments