From b1ba6fec09a23b573b2be66a728e5fcf01bcd508 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sun, 12 Sep 2010 00:34:30 -0400 Subject: [PATCH] Found the problem, now fully fixed (removed a trick). --- taskd/clone.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/taskd/clone.sh b/taskd/clone.sh index 5a9ce74..67568ef 100755 --- a/taskd/clone.sh +++ b/taskd/clone.sh @@ -27,11 +27,7 @@ case "$url" in svnurl="${url#svn+}" GIT_DIR=. git svn clone "$svnurl" . # Neat Trick suggested by Miklos Vajna - GIT_DIR=. git config remote.origin.url . - GIT_DIR=. git config remote.origin.fetch '+refs/remotes/heads/*:refs/heads/*' - GIT_DIR=. git config --add remote.origin.fetch '+refs/remotes/trunk:refs/heads/master' - GIT_DIR=. git config --add remote.origin.fetch '+refs/remotes/tags/*:refs/tags/*' - GIT_DIR=. git fetch + # Removed by fasterfood/interstate -- causing errors. ;; darcs://*) httpurl="${url/darcs:\/\//http://}" -- 2.11.4.GIT