OSDN Git Service

Merge branch 'js/win32-lazyload-dll'
[git-core/git.git] / git-cvsimport.perl
index 1e4e65a..3692992 100755 (executable)
@@ -642,6 +642,7 @@ sub is_sha1 {
 
 sub get_headref ($) {
        my $name = shift;
+       $name =~ s/'/'\\''/;
        my $r = `git rev-parse --verify '$name' 2>/dev/null`;
        return undef unless $? == 0;
        chomp $r;