From: Mike Frysinger Date: Wed, 12 Nov 2008 19:40:57 +0000 (-0500) Subject: use -a with git-cvsimport to pull all commits X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2d20ee12fc373609c37bf48df0d1faeddc1c9d5c;p=home.git use -a with git-cvsimport to pull all commits --- diff --git a/.bin/git-update b/.bin/git-update index 1c4b742..55b9134 100755 --- a/.bin/git-update +++ b/.bin/git-update @@ -8,7 +8,7 @@ if git config svn-remote.svn.url >/dev/null ; then set -- git svn fetch --all "$@" expected="" elif git config cvs.cvsroot >/dev/null ; then - set -- git cvsimport -d $(git config cvs.cvsroot) $(git config cvs.module) "$@" + set -- git cvsimport -a -d $(git config cvs.cvsroot) $(git config cvs.module) "$@" expected="Already up-to-date." else set -- git pull "$@"