From: Junio C Hamano Date: Tue, 18 Apr 2006 21:30:51 +0000 (+0000) Subject: Autogenerated HTML docs for v1.3.0 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=b33fb4f102d38faac9a28e9d99b4aab488364737;ds=sidebyside Autogenerated HTML docs for v1.3.0 --- diff --git a/git-annotate.html b/git-annotate.html new file mode 100644 index 00000000..4e9878b5 --- /dev/null +++ b/git-annotate.html @@ -0,0 +1,345 @@ + + + + + + +git-annotate(1) + + + +

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

+
+

git-blame(1)

+
+

AUTHOR

+
+

Written by Ryan Anderson <ryan@michonline.com>.

+
+

GIT

+
+

Part of the git(7) suite

+
+ + + diff --git a/git-annotate.txt b/git-annotate.txt new file mode 100644 index 00000000..7baf7311 --- /dev/null +++ b/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 :: + 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 . + +GIT +--- +Part of the gitlink:git[7] suite diff --git a/git-blame.html b/git-blame.html new file mode 100644 index 00000000..8e2b6787 --- /dev/null +++ b/git-blame.html @@ -0,0 +1,337 @@ + + + + + + +git-blame(1) + + + +

SYNOPSIS

+
+

git-blame file [options] file [revision]

+
+

DESCRIPTION

+
+

Annotates each line in the given file with information from the commit +which introduced the line. Start annotation from the given revision.

+
+

OPTIONS

+
+
+
+-c, --compability +
+
+

+ Use the same output mode as git-annotate (Default: off). +

+
+
+-l, --long +
+
+

+ Show long rev (Defaults off). +

+
+
+-S, --rev-file <revs-file> +
+
+

+ Use revs from revs-file instead of calling git-rev-list. +

+
+
+-h, --help +
+
+

+ Show help message. +

+
+
+
+

SEE ALSO

+ +

AUTHOR

+
+

Written by Fredrik Kuivinen <freku045@student.liu.se>.

+
+

GIT

+
+

Part of the git(7) suite

+
+ + + diff --git a/git-blame.txt b/git-blame.txt new file mode 100644 index 00000000..51898787 --- /dev/null +++ b/git-blame.txt @@ -0,0 +1,42 @@ +git-blame(1) +============ + +NAME +---- +git-blame - Blame file lines on commits + +SYNOPSIS +-------- +git-blame file [options] file [revision] + +DESCRIPTION +----------- +Annotates each line in the given file with information from the commit +which introduced the line. Start annotation from the given revision. + +OPTIONS +------- +-c, --compability:: + Use the same output mode as git-annotate (Default: off). + +-l, --long:: + Show long rev (Defaults off). + +-S, --rev-file :: + Use revs from revs-file instead of calling git-rev-list. + +-h, --help:: + Show help message. + + +SEE ALSO +-------- +gitlink:git-annotate[1] + +AUTHOR +------ +Written by Fredrik Kuivinen . + +GIT +--- +Part of the gitlink:git[7] suite diff --git a/git.html b/git.html index 9847fdcb..7811ef0e 100644 --- a/git.html +++ b/git.html @@ -1142,6 +1142,22 @@ ancillary user utilities.

Interrogators:

+git-annotate(1) +
+
+

+ Annotate file lines with commit info. +

+
+
+git-blame(1) +
+
+

+ Blame file lines on commits. +

+
+
git-check-ref-format(1)
@@ -2079,7 +2095,7 @@ contributors on the git-list <git@vger.kernel.org>.

diff --git a/git.txt b/git.txt index 03d860b1..24ca55da 100644 --- a/git.txt +++ b/git.txt @@ -399,6 +399,12 @@ gitlink:git-update-ref[1]:: Interrogators: +gitlink:git-annotate[1]:: + Annotate file lines with commit info. + +gitlink:git-blame[1]:: + Blame file lines on commits. + gitlink:git-check-ref-format[1]:: Make sure ref name is well formed.