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

use git tag -l , needed by older gits
authorJoey Hess <joey@kodama.kitenet.net>
Mon, 22 Oct 2007 18:57:06 +0000 (14:57 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Mon, 22 Oct 2007 18:57:06 +0000 (14:57 -0400)
mrconfig.complex

index 3bc577cf4a3b074b0a9ae1875ce8585c0d5cb084..2d566c3ccb92cc94d4c31d9c1ce2c40ac2e6bc14 100644 (file)
@@ -12,7 +12,7 @@ push = if [ -d "$MR_REPO"/.git ]; then git push; fi
 # And how to list tags for git and svn.
 tag = 
        if [ -d "$MR_REPO"/.git ]; then
-               git tag
+               git tag -l
        elsif [ -d "$MR_REPO"/.svn ]; then
                url=$(LANG=C svn info . | grep -i ^URL: | cut -d ' ' -f 2)
                svn ls "$(echo '$url' | sed -e 's/trunk/tags/')"