]> git.wh0rd.org - home.git/blobdiff - .bin/git-update
installkernel: compress files directly
[home.git] / .bin / git-update
index 55b9134e46b277ebe5dbd5cb079588d8627e76ba..324dc7b2c163aec863acd47bb93c33655530dbb0 100755 (executable)
@@ -5,11 +5,19 @@
 #fi
 
 if git config svn-remote.svn.url >/dev/null ; then
+       # git-config uses svn.authorsfile relative to repo root
+       # i.e. good to use .git/authors
        set -- git svn fetch --all "$@"
        expected=""
+elif git config remote.hg.url >/dev/null ; then
+       git-hg pull
 elif git config cvs.cvsroot >/dev/null ; then
+       # authors file is at .git/cvs-authors
        set -- git cvsimport -a -d $(git config cvs.cvsroot) $(git config cvs.module) "$@"
        expected="Already up-to-date."
+elif [[ -d CVS ]] && git rev-parse origin >/dev/null ; then
+       set -- git cvsimport -a
+       expected="Already up-to-date."
 else
        set -- git pull "$@"
        expected="Already up-to-date."