Parent Directory
|
Revision Log
very useful tools to diff all checkouts or commit them (with pre-defined message "local changes")
1 | dpavlin | 667 | #!/bin/sh |
2 | |||
3 | basedir=/data/webpac- | ||
4 | |||
5 | find branches/ -type d -maxdepth 1 -mindepth 1 | grep -v .svn | cut -d\/ -f2 | while read name ; do | ||
6 | dir="$basedir$name" | ||
7 | if [ -e "$dir" ] ; then | ||
8 | if [ -L $dir ] ; then | ||
9 | dir=`readlink $dir` | ||
10 | fi | ||
11 | svn diff $dir | ||
12 | else | ||
13 | echo "checkout $dir doesn't exist, skipping..." | ||
14 | fi | ||
15 | done |
Name | Value |
---|---|
svn:executable | * |
ViewVC Help | |
Powered by ViewVC 1.1.26 |