Code

Update the gitweb/README file to include setting the GITWEB_CONFIG environment
[git.git] / git-svn.perl
index 017f45ac972cf030e545258af0e3793ad1b87e3f..f5c7d46341016a5ca77a52ad16fbcd8c3830678f 100755 (executable)
@@ -1247,6 +1247,7 @@ sub assert_svn_wc_clean {
        }
        my @status = grep(!/^Performing status on external/,(`svn status`));
        @status = grep(!/^\s*$/,@status);
+       @status = grep(!/^X/,@status) if $_no_ignore_ext;
        if (scalar @status) {
                print STDERR "Tree ($SVN_WC) is not clean:\n";
                print STDERR $_ foreach @status;