public
Rubygem
Description: Simple tool to help track git and svn vendor branches in a git repository
Homepage: http://evil.che.lu/projects/braid
Clone URL: git://github.com/evilchelu/braid.git
Search Repo:
use system instead of exec! for git-svn fetch
evilchelu (author)
Tue Apr 29 07:15:54 -0700 2008
commit  48d8984da2b15538dae1c5bb8e2e19d76a2100b4
tree    167b973c73ff1f3fd228728bd1fe1ee9efc25ce8
parent  40376d431f84e53d02dd2335f5f9cff7590be5eb
...
93
94
95
96
 
 
97
98
99
...
93
94
95
 
96
97
98
99
100
0
@@ -93,7 +93,8 @@ module Braid
0
       end
0
 
0
       def git_svn_fetch(remote)
0
- exec!("git svn fetch #{remote}")
0
+ # open4 messes with the pipes of index-pack
0
+ system("git svn fetch #{remote} &> /dev/null")
0
         true
0
       end
0
 

Comments

    No one has commented yet.