aboutsummaryrefslogtreecommitdiff
path: root/sh/propset.sh
diff options
context:
space:
mode:
authorbeber <beber>2005-12-01 13:20:01 +0000
committerbeber <beber>2005-12-01 13:20:01 +0000
commitfd24f0a62f25274c1883436333ab9cb1d9cd37d1 (patch)
tree5dd0c93b62e7daeedfd7dd17bc0495afb0f386e2 /sh/propset.sh
parentps (diff)
downloadespik-fd24f0a62f25274c1883436333ab9cb1d9cd37d1.tar.xz
Add a script to modify propset
Diffstat (limited to 'sh/propset.sh')
-rw-r--r--sh/propset.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/sh/propset.sh b/sh/propset.sh
new file mode 100644
index 0000000..bc2899b
--- /dev/null
+++ b/sh/propset.sh
@@ -0,0 +1,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"