]> git.madduck.net Git - code/myrepos.git/commitdiff

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
authorJoey Hess <joey@kitenet.net>
Mon, 7 Apr 2014 21:59:37 +0000 (17:59 -0400)
committerJoey Hess <joey@kitenet.net>
Mon, 7 Apr 2014 21:59:37 +0000 (17:59 -0400)
debian/changelog
lib/git-annex [new file with mode: 0644]

index e978befca3349651e69fba3d2c007c1f09f85f39..e5ae7bb03128ebfcd2d39f8f57a8af6a2fe0723a 100644 (file)
@@ -1,3 +1,10 @@
+myrepos (1.20140228) UNRELEASED; urgency=medium
+
+  * Added lib/git-annex. Thanks, martin f krafft.
+    Closes: #743882
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 07 Apr 2014 17:58:58 -0400
+
 myrepos (1.20140227) unstable; urgency=medium
 
   * Avoid using man -l, relying on both versions of man for linux working
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 "$@"