We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe4e988 commit ef10085Copy full SHA for ef10085
lib/svn2git/migration.rb
@@ -145,6 +145,14 @@ def parse(args)
145
options
146
end
147
148
+ def self.escape_quotes(str)
149
+ str.gsub("'", "'\\\\''")
150
+ end
151
+
152
+ def escape_quotes(str)
153
+ Svn2Git::Migration.escape_quotes(str)
154
155
156
private
157
158
def clone!
@@ -374,10 +382,6 @@ def verify_working_tree_is_clean
374
382
375
383
376
384
377
- def escape_quotes(str)
378
- str.gsub("'", "'\\\\''")
379
- end
380
-
381
385
def git_config_command
386
if @git_config_command.nil?
387
status = run_command('git config --local --get user.name', false)
0 commit comments