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

switch tests for vcs directories for tags method
authormartin f. krafft <madduck@madduck.net>
Mon, 22 Oct 2007 06:38:59 +0000 (08:38 +0200)
committerJoey Hess <joey@kodama.kitenet.net>
Mon, 22 Oct 2007 16:28:34 +0000 (12:28 -0400)
Signed-off-by: martin f. krafft <madduck@madduck.net>
mrconfig.complex

index e5699d8dda8fc8279ecf9dea4025f8e353f6ebff..3bc577cf4a3b074b0a9ae1875ce8585c0d5cb084 100644 (file)
@@ -11,9 +11,9 @@ 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
+       if [ -d "$MR_REPO"/.git ]; then
                git tag
-       elsif [ -d "$MR_REPO"/.git ]; then
+       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/')"
        else