aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAndré Erdmann <dywi@mailerd.de>2013-09-04 15:11:06 +0200
committerAndré Erdmann <dywi@mailerd.de>2013-09-04 15:12:09 +0200
commitb13760493c3cc09fa9c466eb2b0832020a59cd4f (patch)
tree1bd79f6764082f295e362253366b9daeee962f3e /config
parentgit-commit-overlay: reinit git repo, use config vars (diff)
downloadR_overlay-b13760493c3cc09fa9c466eb2b0832020a59cd4f.tar.gz
R_overlay-b13760493c3cc09fa9c466eb2b0832020a59cd4f.tar.bz2
R_overlay-b13760493c3cc09fa9c466eb2b0832020a59cd4f.zip
config/: add hookrc file, files/shlib: itertools
* hook-related configuration * files/shlib/itertools: provides line_iterator(), which is required to read ${GIT_REMOTES}
Diffstat (limited to 'config')
-rw-r--r--config/hookrc52
1 files changed, 52 insertions, 0 deletions
diff --git a/config/hookrc b/config/hookrc
new file mode 100644
index 0000000..59e3c75
--- /dev/null
+++ b/config/hookrc
@@ -0,0 +1,52 @@
+# GIT_REPO_USER_NAME
+#
+# Defaults to "roverlay".
+#
+#GIT_REPO_USER_NAME=""
+
+# GIT_REPO_USER_EMAIL
+#
+# Defaults to "roverlay@undef.org".
+#
+#GIT_REPO_USER_EMAIL=""
+
+# GIT_COMMIT_MESSAGE
+#
+# Defaults to "roverlay updates".
+#
+#GIT_COMMIT_MESSAGE='roverlay updates'
+
+# GIT_COMMIT_MAX_LINE_WIDTH
+#
+# Defaults to 79.
+#
+#GIT_COMMIT_MAX_LINE_WIDTH=79
+
+# GIT_DEFAULT_REMOTE
+#
+# URL to the remote that is used as "origin" when initializing
+# a new git repo.
+#
+# Defaults to <not set>.
+#
+#GIT_DEFAULT_REMOTE=""
+
+# GIT_REMOTES
+# zero or more "<remote> [<refspec>...]" lines specifying what to push
+# to which remote.
+#
+# Defaults to "${GIT_DEFAULT_REMOTE:-origin} master" if commented out.
+#
+#GIT_REMOTES="
+#git://example1.org/repo.git :
+#git://example2.org/repo.git master:master"
+#
+#GIT_REMOTES=""
+
+# GIT_PUSH_ARGS
+# additional args for "git push".
+#
+# Defaults to <not set>.
+#
+#GIT_PUSH_ARGS="--quiet --all"
+GIT_PUSH_ARGS="--quiet"