aboutsummaryrefslogtreecommitdiff
path: root/sh/propset.sh
blob: bc2899b03363d62848292a19458a117b5f1cb0a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

# All parameters will be then ignore by svn st

if [ $# -lt 1 ]; then
	echo "Give me some file to ignore"
	exit -1
fi

echo "$" >> .svnignore

svn commit -m "ignore update"

svn propset -F .svnignore .

svn commit -m "propset update"

svn up

echo "Job's done"