blob: dc9dc8b5efbca2123689e1ebda7e1771295fa01c (
plain) (
tree)
|
|
#!/bin/sh
# All parameters will be then ignore by svn st
export LC_ALL=C
while [ ! -z "$1" ]
do
echo $1 >> .svnignore
shift
done
svn commit -m "ignore update"
svn propset svn:ignore -F .svnignore .
svn up
svn commit -m "propset update"
|