Am 27.01.20 um 03:24 schrieb Heba Waly via GitGitGadget: > diff --git a/Documentation/git.txt b/Documentation/git.txt > index b1597ac002..cf73f501b6 100644 > --- a/Documentation/git.txt > +++ b/Documentation/git.txt > @@ -110,9 +110,23 @@ foo.bar= ...`) sets `foo.bar` to the empty string which `git config > Do not pipe Git output into a pager. > > --git-dir=<path>:: > - Set the path to the repository. This can also be controlled by > - setting the `GIT_DIR` environment variable. It can be an absolute > - path or relative path to current working directory. > + Set the path to the repository (".git" directory). This can also be > + controlled by setting the `GIT_DIR` environment variable. It can be > + an absolute path or relative path to current working directory. > + > + Specifying the location of the ".git" directory using this > + option (or GIT_DIR environment variable) turns off the > + repository discovery that tries to find a directory with > + ".git" subdirectory (which is how the repository and the > + top-level of the working tree are discovered), and tells Git > + that you are at the top level of the working tree. If you > + are not at the top-level directory of the working tree, you > + should tell Git where the top-level of the working tree is, > + with the --work-tree=<path> option (or GIT_WORK_TREE > + environment variable) > + > + If you just want to run git as if it was started in <path> then use > + git -C. Does this render well? Judging by the precedent set by the descriptions of -C and -c options earlier in this file, continuation paragraphs should not be indented and separated by a line with just a plus sign instead of an empty line. -- Hannes