]> git.madduck.net Git - code/myrepos.git/blobdiff - lib/git-annex

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Added lib/git-annex. Thanks, martin f krafft. Closes: #743882
[code/myrepos.git] / lib / git-annex
diff --git a/lib/git-annex b/lib/git-annex
new file mode 100644 (file)
index 0000000..8d91d01
--- /dev/null
@@ -0,0 +1,31 @@
+# A handler for git-annex clones.
+#
+# To make mr use this file, add a line like this inside the [DEFAULT]
+# section of your ~/.mrconfig
+#include = cat /usr/share/mr/git-annex
+#
+# Do note that this presumes that you have your preferred/required content
+# settings configured as you want them, because otherwise *all* annexed data
+# will be fetched on update/commit/push.
+#
+# An example usage of this would look e.g.
+#
+# [tunes]
+# checkout =
+#      git clone git://example.org/my_tunes $MR_REPO
+#      cd $MR_REPO
+#      git annex init
+#      git_annex_sync
+
+lib = git_annex_sync() { git annex --quiet sync --content; }
+
+git_test = cd ${MR_REPO} && test -d .git && ! git annex wanted . >/dev/null 2>&1
+git_annex_test = cd ${MR_REPO} && test -d .git && git annex wanted . >/dev/null 2>&1
+git_annex_fetch = git annex --quiet fetch
+git_annex_update = git_annex_sync
+git_annex_status = git annex --quiet status
+git_annex_commit = git commit -a "$@" && git_annex_sync
+git_annex_record = git commit -a "$@"
+git_annex_push = git_annex_sync
+git_annex_log = git log "$@"
+git_annex_diff = git diff "$@"