diff options
author | Ann T Ropea <bedhanger@gmx.de> | 2017-12-03 22:27:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-04 08:25:35 -0800 |
commit | a2cd709de314a7bfa038e14fd36f1d21077b4173 (patch) | |
tree | 49da7a18df71cc8cf4f3e6d1a05e44c1b654717a /Documentation | |
parent | f61d89e1009da8025794057ca87c21e277d380fa (diff) | |
download | git-a2cd709de314a7bfa038e14fd36f1d21077b4173.tar.gz git-a2cd709de314a7bfa038e14fd36f1d21077b4173.tar.xz |
print_sha1_ellipsis: introduce helper
Introduce a helper print_sha1_ellipsis() that pays attention to the
GIT_PRINT_SHA1_ELLIPSIS environment variable, and prepare the tests to
unconditionally set it for the test pieces that will be broken once the code
stops showing the extra dots by default.
The removal of these dots is merely a plan at this step and has not happened
yet but soon will.
Document GIT_PRINT_SHA1_ELLIPSIS.
Signed-off-by: Ann T Ropea <bedhanger@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt index 7a1d629ca..6ec871b91 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -709,6 +709,15 @@ of clones and fetches. the background which do not want to cause lock contention with other operations on the repository. Defaults to `1`. +`GIT_PRINT_SHA1_ELLIPSIS` (deprecated):: + If set to `yes`, print an ellipsis following an + (abbreviated) SHA-1 value. This affects indications of + detached HEADs (linkgit:git-checkout[1]) and the raw + diff output (linkgit:git-diff[1]). Printing an + ellipsis in the cases mentioned is no longer considered + adequate and support for it is likely to be removed in the + foreseeable future (along with the variable). + Discussion[[Discussion]] ------------------------ |