Skip to content

Commit d9e32a3

Browse files
committed
Fix command failed: git checkout "blabla"
1 parent 95b6493 commit d9e32a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/svn2git/migration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def fix_branches
379379
if @cannot_setup_tracking_information
380380
run_command(Svn2Git::Migration.checkout_svn_branch(branch))
381381
else
382-
status = run_command("git branch --track \"#{branch}\" \"remotes/svn/#{branch}\"", false)
382+
status = run_command("git branch \"#{branch}\" \"remotes/svn/#{branch}\"", false)
383383

384384
# As of git 1.8.3.2, tracking information cannot be set up for remote SVN branches:
385385
# http://git.661346.n2.nabble.com/git-svn-Use-prefix-by-default-td7594288.html#a7597159

0 commit comments

Comments
 (0)