]> 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:

* Add to the example mrconfig a "tags" command that lists tags.
authorJoey Hess <joey@kodama.kitenet.net>
Sun, 21 Oct 2007 05:49:49 +0000 (01:49 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sun, 21 Oct 2007 05:49:49 +0000 (01:49 -0400)
  (Currently only for svn and git.)

debian/changelog
mrconfig

index 00b51a47d4c797e9844b1d5843c22293357beb1f..6440ffe9e8d2e879b42fe22ddae897bacd4e91dd 100644 (file)
@@ -1,3 +1,10 @@
+mr (0.6) UNRELEASED; urgency=low
+
+  * Add to the example mrconfig a "tags" command that lists tags.
+    (Currently only for svn and git.)
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 21 Oct 2007 01:49:03 -0400
+
 mr (0.5) unstable; urgency=low
 
   [ Joey Hess ]
index e38bd40a60bb445c9246615204dffbf23fbd7280..500985f55f9b907eeed630a41504affbadab932a 100644 (file)
--- a/mrconfig
+++ b/mrconfig
@@ -6,6 +6,16 @@ cleanup = if [ -d "$MR_REPO"/.svn ]; then svn cleanup ; fi
 # And how to run git gc and push.
 gc = if [ -d "$MR_REPO"/.git ]; then git gc; fi
 push = if [ -d "$MR_REPO"/.git ]; then git push; fi
+# And how to list tags for git and svn.
+tag = 
+       if [ -d "$MR_REPO"/.svn ]; then
+               git tag
+       elsif [ -d "$MR_REPO"/.git ]; then
+               url=$(LANG=C svn info . | grep -i ^URL: | cut -d ' ' -f 2)
+               svn ls "$(echo '$url' | sed -e 's/trunk/tags/')"
+       else
+               error "unknown repo type"
+       fi
 # This hack is here because git-pull stupidly outputs tag info to stderr.
 # Shut it up but let real errors through, for use in cron.
 quietupdate = mr -s -n update 3>&1 1>/dev/null 2>&3 | egrep -v '(storing tag|tag: )' || true