summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2007-12-28 22:25:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-12-29 00:11:29 (GMT)
commit3f4bc3e048280a564e85569549a311f716dae277 (patch)
treec40b9b87887a47fa826fcce094def8bb1eb3f5f0
parentc45857019c95ee8ffbf843bdb778ced0cfd4f6fb (diff)
downloadgit-3f4bc3e048280a564e85569549a311f716dae277.zip
git-3f4bc3e048280a564e85569549a311f716dae277.tar.gz
git-3f4bc3e048280a564e85569549a311f716dae277.tar.bz2
git-sh-setup: document git_editor() and get_author_ident_from_commit()
These 2 functions were missing from the manpage. Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/git-sh-setup.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/git-sh-setup.txt b/Documentation/git-sh-setup.txt
index 1ea1faa..505b4c9 100644
--- a/Documentation/git-sh-setup.txt
+++ b/Documentation/git-sh-setup.txt
@@ -44,6 +44,11 @@ set_reflog_action::
end-user action in the reflog, when the script updates a
ref.
+git_editor::
+ runs an editor of user's choice (GIT_EDITOR, core.editor, VISUAL or
+ EDITOR) on a given file, but error out if no editor is specified
+ and the terminal is dumb.
+
is_bare_repository::
outputs `true` or `false` to the standard output stream
to indicate if the repository is a bare repository
@@ -57,6 +62,10 @@ require_work_tree::
if so. Used by scripts that require working tree
(e.g. `checkout`).
+get_author_ident_from_commit::
+ outputs code for use with eval to set the GIT_AUTHOR_NAME,
+ GIT_AUTHOR_EMAIL and GIT_AUTHOR_DATE variables for a given commit.
+
Author
------