]> git.droids-corp.org - git-central.git/commitdiff
Filling in docs.
authorStephen Haberman <stephen@exigencecorp.com>
Thu, 13 Nov 2008 04:28:12 +0000 (22:28 -0600)
committerStephen Haberman <stephen@exigencecorp.com>
Thu, 13 Nov 2008 04:28:12 +0000 (22:28 -0600)
server/post-receive-commitnumbers
server/post-receive-email
server/post-receive-gitconfig
server/update-ensure-follows
server/update-lock-check

index 364618b11ac39527689f7a8659190ea04ff11571..7bd130aab13ac4391e5410327066469aeba044c7 100644 (file)
@@ -1,4 +1,20 @@
 #!/bin/sh
+#
+# Creates commitnumbers as lightweight tags named "r/X" where X increases
+# monotonically.
+#
+# Works by creating a GIT_DIR/commitnumbers file that is a list of all
+# commit SHA1s where the commitnumber == the line number of the SHA1 in the
+# file.
+#
+# If you're adding commitnumbers to an existing repo, you can jump start it
+# (without the tags, but so you don't start at 0), by:
+#
+#     git rev-list --all > $GIT_DIR/commitnumbers
+#
+# There is no real reason the tags are named "r/X"--feel free to substitute your
+# own prefix or drop it all together. That should probably be a config variable.
+#
 
 . $(dirname $0)/functions
 
index 8d5d5c86f1430fc5d6c165770e45ba837163deb2..cea8bfb50d98381d3cc9140a78f04a34e3235183 100755 (executable)
@@ -7,11 +7,12 @@
 # the change being reported. The rule is that (for branch updates) each commit
 # will appear on one email and one email only.
 #
-# This hook script assumes it is enabled on the central repository of a
-# project, with all users pushing only to it and not between each other.  It
-# will still work if you don't operate in that style, but it would become
-# possible for the email to be from someone other than the person doing the
-# push.
+# Differences from the contrib script (off the top of my head):
+#
+# * Sends combined diff output which is great for viewing merge commits
+# * Changes order of commit listing to be oldest to newest
+# * Configurable sendmail path
+# * Use git describe --tags for the email subject to pick up commitnumbers
 #
 # Config
 # ------
index c80322ad096f1c54bb039d8f4d40060a467d5552..46ab3e4df164359c87a0402a769c14d7910b7c99 100644 (file)
@@ -1,4 +1,16 @@
 #!/bin/sh
+#
+# Auto-deploys the contents of the gitconfig branch to $GIT_DIR.
+#
+# The config file is handled specially--instead of the $GIT_DIR's config file
+# being copied over entirely, the gitconfig:config is evaluated line by line
+# with calls to `git config`. This means you can have settings in
+# $GIT_DIR/config that are not in the gitconfig:config and they will not be
+# overwritten.  Deleting $GIT_DIR/config entries has to be manually.
+#
+# Hooks are copied over entirely, but old ones are not deleted. Deleting
+# existing hooks has to be done manually.
+#
 
 while read oldrev newrev refname ; do
        if [ "$refname" == "refs/heads/gitconfig" ] ; then
index 65fb0212bef1ed4f2d7bec9acfc734ce9f308223..779fa9db6e6e5e0be79eb3010246e9a7475fa477 100644 (file)
@@ -8,6 +8,13 @@
 # they are qa'ing will always have the last stable release
 # in it.
 #
+# Config
+# ------
+# hooks.update-ensure-follows.branches
+#  Space-separated list of branches that other branches must merge with
+# hooks.update-ensure-follows.excused
+#  Space-separated list of branches that are excused from following (e.g. gitconfig)
+#
 
 . $(dirname $0)/functions
 
index 098dc16fab385ae83c279c5169d7d79dc14387fe..46931c218a15b14510d62d015a4b24fc75d74186 100644 (file)
@@ -1,8 +1,8 @@
 #!/bin/sh
-
+#
 #
 # Checks $GIT_DIR/locked and $GIT_DIR/preserved for branches that cannot be
-# touched.
+# changed or deleted, respectively.
 #
 
 . $(dirname $0)/functions