···9090 for long options. An option that takes optional option-argument must be
9191 written in the 'stuck' form.
92929393+ * Despite the above suggestion, when Arg is a path relative to the
9494+ home directory of a user, e.g. ~/directory/file or ~u/d/f, you
9595+ may want to use the separate form, e.g. `git foo --file ~/mine`,
9696+ not `git foo --file=~/mine`. The shell will expand `~/` in the
9797+ former to your home directory, but most shells keep the tilde in
9898+ the latter. Some of our commands know how to tilde-expand the
9999+ option value even when given in the stuck form, but not all of
100100+ them do.
101101+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
+6
Documentation/gitcredentials.txt
···242242[credential]
243243 helper = "foo --bar='whitespace arg'"
244244245245+# store helper (discouraged) with custom location for the db file;
246246+# use `--file ~/.git-secret.txt`, rather than `--file=~/.git-secret.txt`,
247247+# to allow the shell to expand tilde to the home directory.
248248+[credential]
249249+ helper = "store --file ~/.git-secret.txt"
250250+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"