diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-12-13 23:03:00 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-13 23:07:47 -0800 |
commit | b3f17ac3d6609c1ccede32ef783d4f2e92e7eba6 (patch) | |
tree | bc35cae673d27af07911bfb410f46e890fec3f07 /Documentation | |
parent | 91c23f76cec4a4ec9b9143b7ebb31e639856ed16 (diff) | |
parent | d3e05983306537c8ec911fc52092697ba80830fa (diff) | |
download | git-b3f17ac3d6609c1ccede32ef783d4f2e92e7eba6.tar.gz git-b3f17ac3d6609c1ccede32ef783d4f2e92e7eba6.tar.xz |
Merge branch 'ks/tag-cleanup'
* ks/tag-cleanup:
git-tag: introduce --cleanup option
Conflicts:
builtin/tag.c
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-tag.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index c83cb13de..622a019eb 100644 --- a/Documentation/git-tag.txt +++ b/Documentation/git-tag.txt @@ -99,6 +99,13 @@ OPTIONS Implies `-a` if none of `-a`, `-s`, or `-u <key-id>` is given. +--cleanup=<mode>:: + This option sets how the tag message is cleaned up. + The '<mode>' can be one of 'verbatim', 'whitespace' and 'strip'. The + 'strip' mode is default. The 'verbatim' mode does not change message at + all, 'whitespace' removes just leading/trailing whitespace lines and + 'strip' removes both whitespace and commentary. + <tagname>:: The name of the tag to create, delete, or describe. The new tag name must pass all checks defined by |