Root/bin/purge

Source at commit bd8c84d7077981e3638812d623d565bec2cd5d68 created 11 years 9 months ago.
By Werner Almesberger, ircstat/ML: April 2012 figures (belatedly - forgot to commit)
1#!/bin/sh
2if [ "$1" ]; then
3    cd "$1" || exit
4fi
5git ls-files -m | grep '.pro$' |
6    while read n; do
7    if ! [ "`git diff "$n" |
8      sed '/^--- /d;/^+++ /d;/^[^-+]/d;/^.update=/d'`" ]; then
9        echo purging "$n" 1>&2
10        git checkout "$n"
11    fi
12    done
13

Archive Download this file

Branches:
master



interactive