3484a859915fd47a9fcd18e339b2693346c9b6d0
[feisty_meow.git] / scripts / rev_control / resolve_svn.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 test_or_die "resolving tree conflict by accepting the working directory as the right one"
10
11