]> git.madduck.net Git - etc/zsh.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:

Don't detect SVN/SVK/CVS, which are not implemented yet
authormartin f. krafft <madduck@madduck.net>
Tue, 6 May 2008 23:15:17 +0000 (00:15 +0100)
committermartin f. krafft <madduck@madduck.net>
Tue, 6 May 2008 23:15:17 +0000 (00:15 +0100)
.zsh/zshrc/85_vcs_prompt

index 0c9db4610cd82230793834fa729d784f70a2690f..a99ca184abf9d869868f29528d71edd349c5edb6 100644 (file)
@@ -71,9 +71,6 @@ __vcs_get_repo_type()
     [ -d ${dir}.git ] && echo git && break
     [ -d ${dir}.bzr ] && echo bzr && break
     [ -d ${dir}.hg ] && echo hg && break
-    [ -d ${dir}.svn ] && echo svn && break
-    [ -d ${dir}.svk ] && echo svk && break
-    [ -d ${dir}CVS ] && echo cvs && break
     [ "$(readlink -f ${dir:-.})" = / ] && echo NONE && break
     dir="../$dir"
   done