Where is Subversion 1.7's pristine copy of a given file?
From: Ryan Schmidt <subversion-2012a_at_ryandesign.com>
Date: Fri, 13 Apr 2012 03:55:34 -0500
I have not upgraded to Subversion 1.7 yet. I'm still on 1.6.17.
One reason is that there is a script I like to use, that I wrote, called svntwdiff. It goes like this:
$ cat svntwdiff
if [ -z "$1" ]; then
FILE="$1"
if [ ! -f "${FILE}" ]; then
if [ ! -d "${SVNDIR}" ]; then
if [ ! -f "${ORIGFILE}" ]; then
twdiff "${FILE}" "${ORIGFILE}"
"twdiff" is a command-line wrapper that comes with the GUI TextWrangler editor; it opens the two given textfiles in TextWrangler and lets me view and edit the differences between files. I often use svntwdiff to examine changes in a file and selectively back out portions of them.
How can I modify this script to be compatible with a Subversion 1.7 format working copy?
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.