Autogenerated HTML docs for v1.4.2.1-g62e27
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 20 Sep 2006 21:29:27 +0000 (21:29 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 20 Sep 2006 21:29:27 +0000 (21:29 +0000)
gitk.html
gitk.txt
hooks.html
hooks.txt

index 9d79ee94977b0ba958167e7e9543e2574e8939ae..2b32c8c50af778bdf51457671d95de1c30a37555 100644 (file)
--- a/gitk.html
+++ b/gitk.html
@@ -314,6 +314,14 @@ frequently used options.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--all\r
+</dt>\r
+<dd>\r
+<p>\r
+        Show all branches.\r
+</p>\r
+</dd>\r
+<dt>\r
 &lt;revs&gt;\r
 </dt>\r
 <dd>\r
@@ -358,6 +366,15 @@ gitk --since="2 weeks ago" -- gitk
         <em>gitk</em>\r
 </p>\r
 </dd>\r
+<dt>\r
+gitk --max-count=100 --all &#8212; Makefile\r
+</dt>\r
+<dd>\r
+<p>\r
+        Show at most 100 changes made to the file <em>Makefile</em>. Instead of only\r
+        looking for changes in the current branch look in all branches.\r
+</p>\r
+</dd>\r
 </dl>\r
 </div>\r
 <h2>See Also</h2>\r
@@ -406,7 +423,7 @@ gitk --since="2 weeks ago" -- gitk
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 26-Aug-2006 08:43:08 UTC\r
+Last updated 20-Sep-2006 21:29:18 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 23be0050b0023cbfecc5fa271b97a7d9855a73b0..f1aeb07f64e09735871f0a956b9ba412578a2a23 100644 (file)
--- a/gitk.txt
+++ b/gitk.txt
@@ -37,6 +37,10 @@ frequently used options.
 
        Show commits older than a specific date.
 
+--all::
+
+       Show all branches.
+
 <revs>::
 
        Limit the revisions to show. This can be either a single revision
@@ -63,6 +67,11 @@ gitk --since="2 weeks ago" \-- gitk::
        The "--" is necessary to avoid confusion with the *branch* named
        'gitk'
 
+gitk --max-count=100 --all -- Makefile::
+
+       Show at most 100 changes made to the file 'Makefile'. Instead of only
+       looking for changes in the current branch look in all branches.
+
 See Also
 --------
 'qgit(1)'::
index 9dec9bb373c73fafc6edcb671d6dc08ab47e18bd..0bd6d2f8ed0fd29f9022bf21a05fd1f0d3228d96 100644 (file)
@@ -267,8 +267,7 @@ div.exampleblock-content {
 directory to trigger action at certain points.  When\r
 <tt>git-init-db</tt> is run, a handful example hooks are copied in the\r
 <tt>hooks</tt> directory of the new repository, but by default they are\r
-all disabled.  To enable a hook, make it executable with `chmod</p>\r
-<p>+x`.</p>\r
+all disabled.  To enable a hook, make it executable with <tt>chmod +x</tt>.</p>\r
 <p>This document describes the currently defined hooks.</p>\r
 </div>\r
 </div>\r
@@ -277,14 +276,14 @@ all disabled.  To enable a hook, make it executable with `chmod</p>
 <p>This hook is invoked by <tt>git-applypatch</tt> script, which is\r
 typically invoked by <tt>git-applymbox</tt>.  It takes a single\r
 parameter, the name of the file that holds the proposed commit\r
-log message.  Exiting with non-zero status causes the\r
-<em>git-applypatch</em> to abort before applying the patch.</p>\r
+log message.  Exiting with non-zero status causes\r
+<tt>git-applypatch</tt> to abort before applying the patch.</p>\r
 <p>The hook is allowed to edit the message file in place, and can\r
 be used to normalize the message into some project standard\r
 format (if the project has one). It can also be used to refuse\r
 the commit after inspecting the message file.</p>\r
-<p>The default applypatch-msg hook, when enabled, runs the\r
-commit-msg hook, if the latter is enabled.</p>\r
+<p>The default <em>applypatch-msg</em> hook, when enabled, runs the\r
+<em>commit-msg</em> hook, if the latter is enabled.</p>\r
 </div>\r
 <h2>pre-applypatch</h2>\r
 <div class="sectionbody">\r
@@ -295,8 +294,8 @@ is made.  Exiting with non-zero status causes the working tree
 after application of the patch not committed.</p>\r
 <p>It can be used to inspect the current working tree and refuse to\r
 make a commit if it does not pass certain test.</p>\r
-<p>The default pre-applypatch hook, when enabled, runs the\r
-pre-commit hook, if the latter is enabled.</p>\r
+<p>The default <em>pre-applypatch</em> hook, when enabled, runs the\r
+<em>pre-commit</em> hook, if the latter is enabled.</p>\r
 </div>\r
 <h2>post-applypatch</h2>\r
 <div class="sectionbody">\r
@@ -313,9 +312,9 @@ with <tt>--no-verify</tt> option.  It takes no parameter, and is
 invoked before obtaining the proposed commit log message and\r
 making a commit.  Exiting with non-zero status from this script\r
 causes the <tt>git-commit</tt> to abort.</p>\r
-<p>The default pre-commit hook, when enabled, catches introduction\r
+<p>The default <em>pre-commit</em> hook, when enabled, catches introduction\r
 of lines with trailing whitespaces and aborts the commit when\r
-a such line is found.</p>\r
+such a line is found.</p>\r
 </div>\r
 <h2>commit-msg</h2>\r
 <div class="sectionbody">\r
@@ -328,8 +327,8 @@ abort.</p>
 be used to normalize the message into some project standard\r
 format (if the project has one). It can also be used to refuse\r
 the commit after inspecting the message file.</p>\r
-<p>The default commit-msg hook, when enabled, detects duplicate\r
-Signed-off-by: lines, and aborts the commit when one is found.</p>\r
+<p>The default <em>commit-msg</em> hook, when enabled, detects duplicate\r
+"Signed-off-by" lines, and aborts the commit if one is found.</p>\r
 </div>\r
 <h2>post-commit</h2>\r
 <div class="sectionbody">\r
@@ -337,21 +336,35 @@ Signed-off-by: lines, and aborts the commit when one is found.</p>
 parameter, and is invoked after a commit is made.</p>\r
 <p>This hook is meant primarily for notification, and cannot affect\r
 the outcome of <tt>git-commit</tt>.</p>\r
-<p>The default post-commit hook, when enabled, demonstrates how to\r
+<p>The default <em>post-commit</em> hook, when enabled, demonstrates how to\r
 send out a commit notification e-mail.</p>\r
 </div>\r
 <h2>update</h2>\r
 <div class="sectionbody">\r
 <p>This hook is invoked by <tt>git-receive-pack</tt> on the remote repository,\r
-which is happens when a <tt>git push</tt> is done on a local repository.\r
+which happens when a <tt>git push</tt> is done on a local repository.\r
 Just before updating the ref on the remote repository, the update hook\r
 is invoked.  Its exit status determines the success or failure of\r
 the ref update.</p>\r
 <p>The hook executes once for each ref to be updated, and takes\r
-three parameters:\r
-    - the name of the ref being updated,\r
-    - the old object name stored in the ref,\r
-    - and the new objectname to be stored in the ref.</p>\r
+three parameters:</p>\r
+<ul>\r
+<li>\r
+<p>\r
+the name of the ref being updated,\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+the old object name stored in the ref,\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+and the new objectname to be stored in the ref.\r
+</p>\r
+</li>\r
+</ul>\r
 <p>A zero exit from the update hook allows the ref to be updated.\r
 Exiting with a non-zero status prevents <tt>git-receive-pack</tt>\r
 from updating the ref.</p>\r
@@ -365,35 +378,35 @@ firing one e-mail per ref when used naively, though.</p>
 <p>Another use suggested on the mailing list is to use this hook to\r
 implement access control which is finer grained than the one\r
 based on filesystem group.</p>\r
-<p>The standard output of this hook is sent to /dev/null; if you\r
-want to report something to the git-send-pack on the other end,\r
-you can redirect your output to your stderr.</p>\r
+<p>The standard output of this hook is sent to <tt>/dev/null</tt>; if you\r
+want to report something to the <tt>git-send-pack</tt> on the other end,\r
+you can redirect your output to your <tt>stderr</tt>.</p>\r
 </div>\r
 <h2>post-update</h2>\r
 <div class="sectionbody">\r
 <p>This hook is invoked by <tt>git-receive-pack</tt> on the remote repository,\r
-which is happens when a <tt>git push</tt> is done on a local repository.\r
+which happens when a <tt>git push</tt> is done on a local repository.\r
 It executes on the remote repository once after all the refs have\r
 been updated.</p>\r
 <p>It takes a variable number of parameters, each of which is the\r
 name of ref that was actually updated.</p>\r
 <p>This hook is meant primarily for notification, and cannot affect\r
 the outcome of <tt>git-receive-pack</tt>.</p>\r
-<p>The post-update hook can tell what are the heads that were pushed,\r
+<p>The <em>post-update</em> hook can tell what are the heads that were pushed,\r
 but it does not know what their original and updated values are,\r
 so it is a poor place to do log old..new.</p>\r
-<p>The default post-update hook, when enabled, runs\r
+<p>When enabled, the default <em>post-update</em> hook runs\r
 <tt>git-update-server-info</tt> to keep the information used by dumb\r
-transports (e.g., http) up-to-date.  If you are publishing\r
-a git repository that is accessible via http, you should\r
+transports (e.g., HTTP) up-to-date.  If you are publishing\r
+a git repository that is accessible via HTTP, you should\r
 probably enable this hook.</p>\r
-<p>The standard output of this hook is sent to /dev/null; if you\r
-want to report something to the git-send-pack on the other end,\r
-you can redirect your output to your stderr.</p>\r
+<p>The standard output of this hook is sent to <tt>/dev/null</tt>; if you\r
+want to report something to the <tt>git-send-pack</tt> on the other end,\r
+you can redirect your output to your <tt>stderr</tt>.</p>\r
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:38:31 UTC\r
+Last updated 20-Sep-2006 21:29:19 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 898b4aaf80aabe8caa9675c4371918a61312f1cb..517f49b5cc5016a20b171789b89f48cb6ef0ecd5 100644 (file)
--- a/hooks.txt
+++ b/hooks.txt
@@ -5,8 +5,7 @@ Hooks are little scripts you can place in `$GIT_DIR/hooks`
 directory to trigger action at certain points.  When
 `git-init-db` is run, a handful example hooks are copied in the
 `hooks` directory of the new repository, but by default they are
-all disabled.  To enable a hook, make it executable with `chmod
-+x`.
+all disabled.  To enable a hook, make it executable with `chmod +x`.
 
 This document describes the currently defined hooks.
 
@@ -16,16 +15,16 @@ applypatch-msg
 This hook is invoked by `git-applypatch` script, which is
 typically invoked by `git-applymbox`.  It takes a single
 parameter, the name of the file that holds the proposed commit
-log message.  Exiting with non-zero status causes the
-'git-applypatch' to abort before applying the patch.
+log message.  Exiting with non-zero status causes
+`git-applypatch` to abort before applying the patch.
 
 The hook is allowed to edit the message file in place, and can
 be used to normalize the message into some project standard
 format (if the project has one). It can also be used to refuse
 the commit after inspecting the message file.
 
-The default applypatch-msg hook, when enabled, runs the
-commit-msg hook, if the latter is enabled.
+The default 'applypatch-msg' hook, when enabled, runs the
+'commit-msg' hook, if the latter is enabled.
 
 pre-applypatch
 --------------
@@ -39,8 +38,8 @@ after application of the patch not committed.
 It can be used to inspect the current working tree and refuse to
 make a commit if it does not pass certain test.
 
-The default pre-applypatch hook, when enabled, runs the
-pre-commit hook, if the latter is enabled.
+The default 'pre-applypatch' hook, when enabled, runs the
+'pre-commit' hook, if the latter is enabled.
 
 post-applypatch
 ---------------
@@ -61,9 +60,9 @@ invoked before obtaining the proposed commit log message and
 making a commit.  Exiting with non-zero status from this script
 causes the `git-commit` to abort.
 
-The default pre-commit hook, when enabled, catches introduction
+The default 'pre-commit' hook, when enabled, catches introduction
 of lines with trailing whitespaces and aborts the commit when
-a such line is found.
+such a line is found.
 
 commit-msg
 ----------
@@ -79,8 +78,8 @@ be used to normalize the message into some project standard
 format (if the project has one). It can also be used to refuse
 the commit after inspecting the message file.
 
-The default commit-msg hook, when enabled, detects duplicate
-Signed-off-by: lines, and aborts the commit when one is found.
+The default 'commit-msg' hook, when enabled, detects duplicate
+"Signed-off-by" lines, and aborts the commit if one is found.
 
 post-commit
 -----------
@@ -91,23 +90,24 @@ parameter, and is invoked after a commit is made.
 This hook is meant primarily for notification, and cannot affect
 the outcome of `git-commit`.
 
-The default post-commit hook, when enabled, demonstrates how to
+The default 'post-commit' hook, when enabled, demonstrates how to
 send out a commit notification e-mail.
 
 update
 ------
 
 This hook is invoked by `git-receive-pack` on the remote repository,
-which is happens when a `git push` is done on a local repository.
+which happens when a `git push` is done on a local repository.
 Just before updating the ref on the remote repository, the update hook
 is invoked.  Its exit status determines the success or failure of
 the ref update.
 
 The hook executes once for each ref to be updated, and takes
 three parameters:
-    - the name of the ref being updated,
-    - the old object name stored in the ref,
-    - and the new objectname to be stored in the ref.
+
+ - the name of the ref being updated,
+ - the old object name stored in the ref,
+ - and the new objectname to be stored in the ref.
 
 A zero exit from the update hook allows the ref to be updated.
 Exiting with a non-zero status prevents `git-receive-pack`
@@ -126,16 +126,16 @@ Another use suggested on the mailing list is to use this hook to
 implement access control which is finer grained than the one
 based on filesystem group.
 
-The standard output of this hook is sent to /dev/null; if you
-want to report something to the git-send-pack on the other end,
-you can redirect your output to your stderr.
+The standard output of this hook is sent to `/dev/null`; if you
+want to report something to the `git-send-pack` on the other end,
+you can redirect your output to your `stderr`.
 
 
 post-update
 -----------
 
 This hook is invoked by `git-receive-pack` on the remote repository,
-which is happens when a `git push` is done on a local repository.
+which happens when a `git push` is done on a local repository.
 It executes on the remote repository once after all the refs have
 been updated.
 
@@ -145,16 +145,16 @@ name of ref that was actually updated.
 This hook is meant primarily for notification, and cannot affect
 the outcome of `git-receive-pack`.
 
-The post-update hook can tell what are the heads that were pushed,
+The 'post-update' hook can tell what are the heads that were pushed,
 but it does not know what their original and updated values are,
 so it is a poor place to do log old..new.
 
-The default post-update hook, when enabled, runs
+When enabled, the default 'post-update' hook runs
 `git-update-server-info` to keep the information used by dumb
-transports (e.g., http) up-to-date.  If you are publishing
-a git repository that is accessible via http, you should
+transports (e.g., HTTP) up-to-date.  If you are publishing
+a git repository that is accessible via HTTP, you should
 probably enable this hook.
 
-The standard output of this hook is sent to /dev/null; if you
-want to report something to the git-send-pack on the other end,
-you can redirect your output to your stderr.
+The standard output of this hook is sent to `/dev/null`; if you
+want to report something to the `git-send-pack` on the other end,
+you can redirect your output to your `stderr`.