diff options
author | Jeff King <peff@peff.net> | 2009-09-05 04:59:56 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-09-05 23:16:32 -0700 |
commit | 7c9f7038e923e6eb135b27c6fca9a010b034bc27 (patch) | |
tree | e123bfb2fe90b490cf5fcb89c5ff5db03cc3451b /Documentation | |
parent | 6f15787181a163e158c6fee1d79085b97692ac2f (diff) | |
download | git-7c9f7038e923e6eb135b27c6fca9a010b034bc27.tar.gz |
commit: support alternate status formats
The status command recently grew "short" and "porcelain"
options for alternate output formats. Since status is no
longer "commit --dry-run", these formats are inaccessible to
people who do want to see a dry-run in a parseable form.
This patch makes those formats available to "git commit",
implying the "dry-run" option when they are used.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-commit.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/git-commit.txt b/Documentation/git-commit.txt index 64f94cfe12..c45fbe4f97 100644 --- a/Documentation/git-commit.txt +++ b/Documentation/git-commit.txt @@ -75,6 +75,20 @@ OPTIONS and paths that are untracked, similar to the one that is given in the commit log editor. +--short:: + When doing a dry-run, give the output in the short-format. See + linkgit:git-status[1] for details. Implies `--dry-run`. + +--porcelain:: + When doing a dry-run, give the output in a porcelain-ready + format. See linkgit:git-status[1] for details. Implies + `--dry-run`. + +-z:: + When showing `short` or `porcelain` status output, terminate + entries in the status output with NUL, instead of LF. If no + format is given, implies the `--porcelain` output format. + -F <file>:: --file=<file>:: Take the commit message from the given file. Use '-' to |