You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Peter Yamamoto <ya...@page44.com> on 2006/03/20 06:05:03 UTC

tried case insensitive pre-commit hook, now have bad workspace...

I am trying to get the pre-commit for case insensitive check to work on
windows.
 
The first time, I didn't have python in the path which explains the
first error.
 
I then corrected the precommit batch file and reran on the client. This
seemed to give the desired output. But it also seemed to leave my
workspace in an inconsistent state.
 
C:\temp\svn_image\copy_svn_trunk_hawk>svn commit --message "case
sensitive test"
 READme.txt
Adding         READme.txt
Transmitting file data .svn: Commit failed (details follow):
svn: 'pre-commit' hook failed with error output:
'python' is not recognized as an internal or external command,
operable program or batch file.
Error found in commit
 
C:\temp\svn_image\svn_trunk_project>
C:\temp\svn_image\svn_trunk_project>svn commit --message "case sensitive
test"
 READme.txt
Adding         READme.txt
Transmitting file data .svn: Commit failed (details follow):
svn: 'pre-commit' hook failed with error output:
Case conflict: trunk/project/READme.txt
Error found in commit
 
C:\temp\svn_image\svn_trunk_project>svn revert READme.txt
Reverted 'READme.txt'
 
C:\temp\svn_image\svn_trunk_project>
C:\temp\svn_image\svn_trunk_project>svn update readme.txt
svn: Can't copy '.svn\text-base\readme.txt.svn-base' to
'.svn\tmp\text-base\read
me.txt.svn-base.tmp': The system cannot find the file specified.
 
C:\temp\svn_image\svn_trunk_project>svn update -N
svn: Can't copy '.svn\text-base\readme.txt.svn-base' to
'.svn\tmp\text-base\read
me.txt.svn-base.2.tmp': The system cannot find the file specified.
 
C:\temp\svn_image\svn_trunk_project>svn cleanup
 
C:\temp\svn_image\svn_trunk_project>svn update -N
svn: Can't copy '.svn\text-base\readme.txt.svn-base' to
'.svn\tmp\text-base\read
me.txt.svn-base.tmp': The system cannot find the file specified.
 
C:\temp\svn_image\svn_trunk_project>svn update
svn: Can't copy '.svn\text-base\readme.txt.svn-base' to
'.svn\tmp\text-base\read
me.txt.svn-base.2.tmp': The system cannot find the file specified.

Once again, foiled by the handling of the .svn folder manipulations, it
appears?!
Is there anyway to fix this or am I once again going to have to blow
away 60Gb and checkout again?!
 
Peter