git-untrack-ignored script

This commit is contained in:
Adrian Kreher 2010-02-05 15:27:20 -06:00
parent 267f9a8c80
commit d3517163a5
2 changed files with 54 additions and 0 deletions

52
git-untrack-ignored Executable file
View file

@ -0,0 +1,52 @@
#!/usr/bin/perl -w
# moderately tested script to untrack files that are listed in .gitignore
use strict;
use Getopt::Long;
my $dry_run = 0;
my $help_me = 0;
GetOptions(
'dry-run!' => \$dry_run,
'h|help|?' => \$help_me,
);
if ($help_me) {
print "$0: runs 'git rm --cached' for all the files in your .gitignore\n";
print "(This makes them untracked but not deleted)\n";
print "Options: --dry-run: just print out which files we would remove\n";
exit;
}
open my $fh, '<', '.gitignore' or die "Couldn't find/open .gitignore: $!";
my @patterns = <$fh>;
close $fh;
chomp @patterns;
apply_patterns('.', @patterns);
sub apply_patterns {
my $dir = shift;
#print "at $dir\n";
my @patterns = @_;
for my $pattern (@patterns) {
if ($pattern =~ /^\s*#/ || $pattern =~ /^\s*$/) {
next;
} elsif ($pattern =~ /^\s*!/) {
print "ignoring negating pattern\n";
}
my @files = glob($pattern);
for my $file (grep {-e $_} map {"$dir/$_"} @files) {
if ($dry_run) {
print "unstage $file\n";
} else {
system('git', 'rm', '-q', '--ignore-unmatch', '--cached', $file);
}
}
}
apply_patterns($_, @patterns) for grep {-d} glob($dir . '/*');
}

View file

@ -77,6 +77,8 @@ my %links = (
caffeinate => 'bin/caffeinate',
lock => 'bin/lock',
'git-untrack-ignored' => 'bin/git-untracked-ignored',
latex => '.latex',
);