[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

can't get history for deleted file using working copy path

From: Zing <zing+svnusers_at_fastmail.fm>
Date: Tue, 24 Feb 2009 12:09:38 -0500 (EST)

I think this is a bug, but confirmation would be appreciated. At least, I
was surprised when it didn't work.

I tested this with svn versions: 1.4.3 and 1.5.4

===================SCRIPT===============
#!/bin/bash
REPO=`pwd`/testsvn-repo
svnadmin create testsvn-repo
svn co file:///$REPO testsvn-checkout
cd testsvn-checkout
echo "this is a concept file" > concept
svn add concept
svn ci -m "initial concept file" concept
svn rm concept
svn ci -m "remove concept file"
svn up
#
# the following commands fail:
#
svn log concept_at_1
svn cat concept_at_1
#
# you can hack it to make it work by just adding
# a new concept file though!
#
echo "this is a new concept file" > concept
svn add concept
svn log concept_at_1
======================END SCRIPT===================

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1221514

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].

Received on 2009-02-24 18:10:34 CET

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.