/[webpac]/diff_checkouts.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /diff_checkouts.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 667 - (show annotations)
Tue Feb 15 23:58:13 2005 UTC (19 years, 1 month ago) by dpavlin
File MIME type: application/x-sh
File size: 313 byte(s)
very useful tools to diff all checkouts or commit them
(with pre-defined message "local changes")

1 #!/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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26