Hadley
|
Re:Script for using bundles in subversion - 2007/04/24 10:54
Here's a simple bash script that does the same thing:
| Code: | svnfix() {
dir=presentation.key
mv $1 "$1-backup"
svn up $1
rsync -arC "$1-backup/" $1/
svn add --force $1
rm -rf $1-backup
}
|
Usage:
svnfix name-of-my-presentation.key
(note that there's no trailing /)
|