From: Oleg Broytman Date: Fri, 25 Apr 2014 01:06:46 +0000 (+0400) Subject: Comment out messing with remote refs X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=6845b67ea5b7bb839f13dad86711626944759ede;p=git-scripts.git Comment out messing with remote refs --- diff --git a/svn/clone b/svn/clone index c206fc2..2ac2d34 100755 --- a/svn/clone +++ b/svn/clone @@ -28,10 +28,10 @@ git svn clone "$url" --authors-file=authors.txt --stdlayout "$dir" && cd "$dir" && # fix references -cp -rf .git/refs/remotes/tags/* .git/refs/tags/ && -rm -rf .git/refs/remotes/tags -cp -rf .git/refs/remotes/* .git/refs/heads/ && -rm -rf .git/refs/remotes +#cp -rf .git/refs/remotes/tags/* .git/refs/tags/ && +#rm -rf .git/refs/remotes/tags +#cp -rf .git/refs/remotes/* .git/refs/heads/ && +#rm -rf .git/refs/remotes # convert svn:ignore to .gitignore git svn create-ignore &&