]> git.phdru.name Git - git-scripts.git/blobdiff - svn/svn2git
Feat(submodules/remove): Add option `-c`
[git-scripts.git] / svn / svn2git
index b225f69e6ff3c7ce03997d523297b84ccd9e2b43..ab89784f4803ee4c4427a7d22022cf82d226d65c 100755 (executable)
@@ -27,9 +27,9 @@ fi
 git svn clone "$url" --authors-file=authors.txt --prefix=svn/ --stdlayout "$dir" &&
 cd "$dir" &&
 
-# Convert tags and branches
+# Convert branches and tags
 
-# See http://blog.jessitron.com/2013/08/converting-from-svn-to-git.html
+# See https://jessitron.com/2013/08/17/converting-from-svn-to-git/
 
 git for-each-ref --format="%(refname:short)" refs/remotes/svn |
    sed 's#svn/##' | grep -v '^tags' |
@@ -57,4 +57,4 @@ git config --local --path svn.authorsfile .git/info/authors.txt
 git svn gc &&
 git gc --aggressive &&
 echo "Cloned from $url using git-svn" >.git/description &&
-exec "${VISUAL:-${EDITOR:-vi}}" .git/description
+exec `git var GIT_EDITOR` .git/description