Adds man pages for all remaining commands except guilt-import-commit NOTE: depends on usage generation patch Signed-off-by: Brandon Philips -- diff --git a/Documentation/guilt-add.txt b/Documentation/guilt-add.txt new file mode 100644 index 0000000..caf4cc2 --- /dev/null +++ b/Documentation/guilt-add.txt @@ -0,0 +1,41 @@ +guilt-add(1) +============ + +NAME +---- +guilt-add - Add a file to git and guilt + + +SYNOPSIS +-------- +'guilt-add ' + +DESCRIPTION +----------- +Adds the files specified to git using git-add making it available to guilt. + +OPTIONS +------- +:: + Files to add + +EXAMPLES +-------- + +Create and add a new file example.c + +$ touch example.c +$ guilt-add example.c + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-applied.txt b/Documentation/guilt-applied.txt new file mode 100644 index 0000000..4662663 --- /dev/null +++ b/Documentation/guilt-applied.txt @@ -0,0 +1,27 @@ +guilt-applied(1) +================ + +NAME +---- +guilt-applied - List applied patches + +SYNOPSIS +-------- +'guilt-applied' + +DESCRIPTION +----------- +Prints a list of all applied patches. + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-delete.txt b/Documentation/guilt-delete.txt new file mode 100644 index 0000000..d8aae2e --- /dev/null +++ b/Documentation/guilt-delete.txt @@ -0,0 +1,42 @@ +guilt-delete(1) +=============== + +NAME +---- +guilt-delete - Delete a patch + + +SYNOPSIS +-------- +include::usage-guilt-delete.txt[] + +DESCRIPTION +----------- +Delete an unapplied patch from the series. + +OPTIONS +------- +-f:: + Remove the patch from the series and disk + +:: + Name of the patch to delete. + +EXAMPLES +-------- +Delete a patch called 'foobar': + +$ guilt-delete foobar + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-header.txt b/Documentation/guilt-header.txt new file mode 100644 index 0000000..d987687 --- /dev/null +++ b/Documentation/guilt-header.txt @@ -0,0 +1,29 @@ +guilt-header(1) +=============== + +NAME +---- +guilt-header - Print a patch header + +SYNOPSIS +-------- +include::usage-guilt-header.txt[] + +DESCRIPTION +----------- +Prints either the topmost patches' header or the header of a specified patch. + +:: + Name of the patch. + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite diff --git a/Documentation/guilt-help.txt b/Documentation/guilt-help.txt new file mode 100644 index 0000000..f256be2 --- /dev/null +++ b/Documentation/guilt-help.txt @@ -0,0 +1,37 @@ +guilt-help(1) +============ + +NAME +---- +guilt-help - open man page of a guilt command + +SYNOPSIS +-------- +include::usage-guilt-help.txt[] + +DESCRIPTION +----------- +Open up the man page for a guilt command. + +EXAMPLES +-------- + +Open the guilt-status man page + +$ guilt-help status + +Open the guilt man page + +$ guilt-help + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite diff --git a/Documentation/guilt-next.txt b/Documentation/guilt-next.txt index 8acdcea..9aefdac 100644 --- a/Documentation/guilt-next.txt +++ b/Documentation/guilt-next.txt @@ -3,16 +3,16 @@ guilt-next(1) NAME ---- -guilt-next - Output name of next patch to be pushed +guilt-next - Output the name of next patch to be pushed SYNOPSIS -------- -'guilt-next' +include::usage-guilt-next.txt[] DESCRIPTION ----------- -Output name of next patch to be pushed. If guilt-push(1) is issued, this +Output the name of next patch to be pushed. If guilt-push(1) is issued, this patch would be the topmost patch. Author diff --git a/Documentation/guilt-patchbomb.txt b/Documentation/guilt-patchbomb.txt new file mode 100644 index 0000000..a672faa --- /dev/null +++ b/Documentation/guilt-patchbomb.txt @@ -0,0 +1,30 @@ +guilt-patchbomb(1) +================== + +NAME +---- +guilt-patchbomb - Create an mbox + +SYNOPSIS +-------- +include::usage-guilt-patchbomb.txt[] + +DESCRIPTION +----------- +Interactive wrapper around git-send-email. + +-n:: + Don't send + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-pop.txt b/Documentation/guilt-pop.txt new file mode 100644 index 0000000..1a671c7 --- /dev/null +++ b/Documentation/guilt-pop.txt @@ -0,0 +1,31 @@ +guilt-pop(1) +============ + +NAME +---- +guilt-pop - Pop patches from the tree + +SYNOPSIS +-------- +include::usage-guilt-pop.txt[] + +OPTIONS +------- +--all:: +-a:: + Pop all patches off the tree + +:: + Pop this patch off the tree + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite diff --git a/Documentation/guilt-push.txt b/Documentation/guilt-push.txt new file mode 100644 index 0000000..1cc654a --- /dev/null +++ b/Documentation/guilt-push.txt @@ -0,0 +1,34 @@ +guilt-push(1) +============= + +NAME +---- +guilt-push - Push patches onto the tree + +SYNOPSIS +-------- +include::usage-guilt-push.txt[] + +OPTIONS +------- +-f:: + Force the push if the patch doesn't apply cleanly + +--all:: +-a:: + Push all patches on the tree + +:: + Push this patch on the tree + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite diff --git a/Documentation/guilt-rm.txt b/Documentation/guilt-rm.txt new file mode 100644 index 0000000..a03742a --- /dev/null +++ b/Documentation/guilt-rm.txt @@ -0,0 +1,32 @@ +guilt-rm(1) +=========== + +NAME +---- +guilt-rm - Remove a file from the git tree and guilt + +SYNOPSIS +-------- +include::usage-guilt-rm.txt[] + +DESCRIPTION +----------- +Removes the files specified from git using git-rm + +OPTIONS +------- +:: + Files to add + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-series.txt b/Documentation/guilt-series.txt new file mode 100644 index 0000000..8f8a31f --- /dev/null +++ b/Documentation/guilt-series.txt @@ -0,0 +1,31 @@ +guilt-series(1) +=============== + +NAME +---- +guilt-series - Print the stack of patches + + +SYNOPSIS +-------- +include::usage-guilt-series.txt[] + +DESCRIPTION +----------- +Print the stack of patches on this branch. + +-v:: + Add a + next to the top most applied patch + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Josef "Jeff" Sipek + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-status.txt b/Documentation/guilt-status.txt new file mode 100644 index 0000000..2e70f0d --- /dev/null +++ b/Documentation/guilt-status.txt @@ -0,0 +1,36 @@ +guilt-status(1) +=============== + +NAME +---- +guilt-status - Print the status of files since the last refresh + +SYNOPSIS +-------- +include::usage-guilt-status.txt[] + +DESCRIPTION +----------- +Each file is printed with a prefix that describes it's status. + + A added + M unmerged + D deleted + R removed/deleted + C modified/changed + K to be killed + ? untracked + + +Author +------ +Written by Josef "Jeff" Sipek + +Documentation +------------- +Documentation by Brandon Philips + +GUILT +----- +Part of the guiltlink:guilt[7] suite + diff --git a/Documentation/guilt-top.txt b/Documentation/guilt-top.txt index 16772a4..8ae9bdd 100644 --- a/Documentation/guilt-top.txt +++ b/Documentation/guilt-top.txt @@ -10,10 +10,6 @@ SYNOPSIS -------- include::usage-guilt-top.txt[] -DESCRIPTION ------------ -Output name of topmost applied patch. - Author ------ Written by Josef "Jeff" Sipek