SVN, ignorer des fichiers

2013-03-06

Pour ignorer plusieurs fichiers lors des commits SVN

#!/bin/bash

cd $(dirname $(readlink -f $0))/..

svnignorefile=$(mktemp)

cat >> $svnignorefile <<EOF
.classpath
.project
bin
target
*.tgz
EOF

svn propset svn:ignore -F $svnignorefile .

rm -f $svnignorefile

svn commit -m 'svn ignore'

Une page qui explique bien http://www.math-linux.com/spip.php?article111