From 6719c63350a67e542a703297e50023c16ba425dd Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Sun, 4 Mar 2007 22:54:00 -0500 Subject: [PATCH] Docs: guilt-new manpage Signed-off-by: Josef 'Jeff' Sipek --- Documentation/guilt-new.txt | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 Documentation/guilt-new.txt diff --git a/Documentation/guilt-new.txt b/Documentation/guilt-new.txt new file mode 100644 index 0000000..3c52021 --- /dev/null +++ b/Documentation/guilt-new.txt @@ -0,0 +1,64 @@ +guilt-new(1) +============= + +NAME +---- +guilt-new - Create a new patch + + +SYNOPSIS +-------- +'guilt-new [-s] [-e|-m ] ' + +DESCRIPTION +----------- +Create a new patch and push it on top of the stack. An optional patch +description can be supplied either interactively on via the command line. + +OPTIONS +------- +-s:: + Add a Signed-off-by with your committer identifier string to the + patch message. + +-e:: + Edit the patch message interactively. This option can be combined + with -s to easily sign off on the patch. + +-m :: + The "" string will used as the commit message. This option + can be combined with -s to easily sign off on the patch. + +:: + Name of the patch to create. This must be a legal relative pathname + string. For example, "foo", "foo/bar", and "foo/bar/foobar" are all + valid. + +EXAMPLES +-------- + +Create a new patch called 'foobar': + +$ git-new foobar + +Create a patch called 'foo' and supply a patch description interactively: + +$ git-new -e foo + +Create a patch called 'bar' with a provided patch description and sign off +on the patch: + +$ git-new -s -m patch-fu bar + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +-------------- +Documentation by Josef "Jeff" Sipek + +GUILT +----- +Part of the guilt[7] suite + -- 2.11.4.GIT