Subversion cannot rename an item when you change only its case unless
the underlying filesystem is case sensitive. OSX and Windows
filesystems are case-preserving but not case-sensitive. You should be
able to rename this item directly in the repository and then run svn
update. Or rename it on Linux. Or rename it in two steps.:
svn rename .f90 to .F90-1
svn commit
svn rename .F90-1 to .F90
svn commit
On Wed, Feb 24, 2010 at 1:23 PM, Mark Branson <mark_at_atmos.colostate.edu> wrote:
>
> trying to change a file extension from ".f90" to ".F90". tried using quotes but that fails, too. what am i missing?
>
> /Users/mark/mmf/SPCAM/trunk/models/atm/cam/src/physics/crm> svn move abcoefs.f90 abcoefs.F90
> svn: Path 'abcoefs.F90' is not a directory
> /Users/mark/mmf/SPCAM/trunk/models/atm/cam/src/physics/crm> svn move "abcoefs.f90" "abcoefs.F90"
> svn: Path 'abcoefs.F90' is not a directory
> /Users/mark/mmf/SPCAM/trunk/models/atm/cam/src/physics/crm> svn move 'abcoefs.f90' 'abcoefs.F90'
> svn: Path 'abcoefs.F90' is not a directory
>
>
--
Thanks
Mark Phippard
http://markphip.blogspot.com/
Received on 2010-02-24 22:48:02 CET