public
Rubygem
Description: Simple tool to help track git and svn vendor branches in a git repository
Homepage: http://github.com/evilchelu/braid/wikis/home
Clone URL: git://github.com/evilchelu/braid.git
Call git svn properly
norbert (author)
Tue Aug 19 08:38:27 -0700 2008
commit  37519f29338695170724a9f2d5e43e844697fb6b
tree    d75304a9ca9e952a031a9d7dac9ae0aeb709f2eb
parent  3110de747a4b5dab499726c5a625568557247092
...
238
239
240
241
 
242
243
244
...
249
250
251
252
 
253
254
255
...
238
239
240
 
241
242
243
244
...
249
250
251
 
252
253
254
255
0
@@ -238,7 +238,7 @@ module Braid
0
     end
0
 
0
     class GitSvn < Proxy
0
-      def self.command; "git-svn"; end
0
+      def self.command; "git svn"; end
0
 
0
       def commit_hash(remote, revision)
0
         out = invoke(:log, "--show-commit --oneline", "-r #{revision}", remote)
0
@@ -249,7 +249,7 @@ module Braid
0
 
0
       def fetch(remote)
0
         # open4 messes with the pipes of index-pack
0
-        system("git-svn fetch #{remote} &> /dev/null")
0
+        system("git svn fetch #{remote} &> /dev/null")
0
         raise ShellExecutionError, "could not fetch" unless $? == 0
0
         true
0
       end

Comments