Signed-off-by: Jonas Fonseca <fonseca@xxxxxxx> --- Documentation/git-annotate.txt | 44 ++++++++++++++++++++++++++++++++++++++++ Documentation/git-blame.txt | 31 ++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 0 deletions(-) create mode 100644 Documentation/git-annotate.txt create mode 100644 Documentation/git-blame.txt c280414507b072689afd3061a2d43527ebab292e diff --git a/Documentation/git-annotate.txt b/Documentation/git-annotate.txt new file mode 100644 index 0000000..1cfc3e3 --- /dev/null +++ b/Documentation/git-annotate.txt @@ -0,0 +1,44 @@ +git-annotate(1) +=============== + +NAME +---- +git-annotate - annotate file lines with commit info + +SYNOPSIS +-------- +git-annotate [options] file [revision] + +DESCRIPTION +----------- +Annotates each line in the given file with information from the commit +which introduced the line. Optionally annotate from a given revision. + +OPTIONS +------- +-l, --long:: + Show long rev (Defaults off). + +-t, --time:: + Show raw timestamp (Defaults off). + +-r, --rename:: + Follow renames (Defaults on). + +-S, --rev-file <revs-file>:: + Use revs from revs-file instead of calling git-rev-list. + +-h, --help:: + Show help message. + +SEE ALSO +-------- +gitlink:git-blame[1] + +AUTHOR +------ +Written by Ryan Anderson <ryan@xxxxxxxxxxxxxx>. + +GIT +--- +Part of the gitlink:git[7] suite diff --git a/Documentation/git-blame.txt b/Documentation/git-blame.txt new file mode 100644 index 0000000..bdf28d9 --- /dev/null +++ b/Documentation/git-blame.txt @@ -0,0 +1,31 @@ +git-blame(1) +============ + +NAME +---- +git-blame - blame file lines on commits + +SYNOPSIS +-------- +git-blame revision file + +DESCRIPTION +----------- +Annotates each line in the given file with information from the commit +which introduced the line. Start annotation from the given revision. + +OPTIONS +------- +No options. + +SEE ALSO +-------- +gitlink:git-annotate[1] + +AUTHOR +------ +Written by Fredrik Kuivinen <freku045@xxxxxxxxxxxxxx>. + +GIT +--- +Part of the gitlink:git[7] suite -- 1.2.4.g9201 -- Jonas Fonseca - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html