attempting to fix naive system updater
[feisty_meow.git] / scripts / rev_control / fix_svn_item.sh
1 #!/bin/bash
2
3 # resolves a tree conflict by accepting the "working" version,
4 # which effectively makes your current change the accepted one.
5
6 filename="$1"; shift
7
8 svn resolve --accept=working "$filename"
9
10