Merge branch 'sg/git-C-empty-doc'
authorJunio C Hamano <gitster@pobox.com>
Thu, 11 Jul 2019 22:16:48 +0000 (15:16 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Jul 2019 22:16:48 +0000 (15:16 -0700)
Doc update.

* sg/git-C-empty-doc:
Document that 'git -C ""' works and doesn't change directory

1  2 
Documentation/git.txt
diff --combined Documentation/git.txt
index e095514ace357b8e76ab0d9ea58b2a6c0e3dcd5b,81f7ecd52c959f74f5b78b45d34ea0c9b041a966..9b82564d1aa9c04c4b0299c1a82c4ba45a2c3415
@@@ -33,8 -33,7 +33,8 @@@ individual Git commands with "git help 
  manual page gives you an overview of the command-line command syntax.
  
  A formatted and hyperlinked copy of the latest Git documentation
 -can be viewed at `https://git.github.io/htmldocs/git.html`.
 +can be viewed at https://git.github.io/htmldocs/git.html
 +or https://git-scm.com/docs.
  
  
  OPTIONS
@@@ -57,7 -56,8 +57,8 @@@ help ...`
        Run as if git was started in '<path>' instead of the current working
        directory.  When multiple `-C` options are given, each subsequent
        non-absolute `-C <path>` is interpreted relative to the preceding `-C
-       <path>`.
+       <path>`.  If '<path>' is present but empty, e.g. `-C ""`, then the
+       current working directory is left unchanged.
  +
  This option affects options that expect path name like `--git-dir` and
  `--work-tree` in that their interpretations of the path names would be
@@@ -211,26 -211,6 +212,26 @@@ people via patch over e-mail
  
  include::cmds-foreignscminterface.txt[]
  
 +Reset, restore and revert
 +~~~~~~~~~~~~~~~~~~~~~~~~~
 +There are three commands with similar names: `git reset`,
 +`git restore` and `git revert`.
 +
 +* linkgit:git-revert[1] is about making a new commit that reverts the
 +  changes made by other commits.
 +
 +* linkgit:git-restore[1] is about restoring files in the working tree
 +  from either the index or another commit. This command does not
 +  update your branch. The command can also be used to restore files in
 +  the index from another commit.
 +
 +* linkgit:git-reset[1] is about updating your branch, moving the tip
 +  in order to add or remove commits from the branch. This operation
 +  changes the commit history.
 ++
 +`git reset` can also be used to restore the index, overlapping with
 +`git restore`.
 +
  
  Low-level commands (plumbing)
  -----------------------------