diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-06 01:50:02 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-06 01:50:02 -0800 |
commit | 8f321a39257a06db014a3b6ae5dce839821cdb16 (patch) | |
tree | bdae79f6e99d8db7ded12228cec8b3fe37d9ad9f /git-commit.sh | |
parent | 5715d0bb60dd90b03519cc436310f3cabe5b9b2a (diff) | |
download | git-8f321a39257a06db014a3b6ae5dce839821cdb16.tar.gz |
scripts: Add placeholders for OPTIONS_SPEC
--text follows this line--
These commands currently lack OPTIONS_SPEC; allow people to
easily list with "git grep 'OPTIONS_SPEC=$'" what they can help
improving.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-x | git-commit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-commit.sh b/git-commit.sh index fcb8443bdf..9a636e55cc 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -5,6 +5,7 @@ USAGE='[-a | --interactive] [-s] [-v] [--no-verify] [-m <message> | -F <logfile> | (-C|-c) <commit> | --amend] [-u] [-e] [--author <author>] [--template <file>] [[-i | -o] <path>...]' SUBDIRECTORY_OK=Yes +OPTIONS_SPEC= . git-sh-setup require_work_tree |