vote up 12 vote down star
2

I've been using Subversion for code control with TortoiseSVN to interface with the server for the past few months, and in general it's been going great! However, occasionally my FoxPro IDE will change the case of a file extension without warning where "program.prg" becomes "program.PRG") TortoiseSVN apparently takes this to mean the first file was removed, becoming flagged as "missing" and the second name comes up as "non-versioned", wreaking havoc on my ability to track changes to the file. I understand that Subversion has it origins in the case-sensitive world of *nix but, is there any way to control this behavior in either Subversion or TortoiseSVN to be file name case-insensitive when used with Windows?

flag

5 Answers

vote up 10 vote down check

Unfortunately, Subversion is case-sensitive. This is due to the fact that files from Subversion can be checked out on both case-sensitive file systems (e.g., *nix) and case-insensitive file systems (e.g., Windows, Mac).

This script may help you avoid problems when you check in files. If it doesn't solve your problem, my best suggestion is to write a little script to make sure that all extensions are lowercase and run it every time before you check in/check out. It'll be a PITA, but maybe your best bet.

link|flag
TortoiseSVN has an case-adjustment feature. If TSVN detects that a filename in the working copy was renamed in case only, it will restore the case on the file. (The command line SVN tools don't do this.) – msemack Oct 1 at 14:19
vote up 2 vote down

I believe the random upper and lower case on the extensions isn't random at all. I remember testing on this. If you modify a program from the project manager. By clicking on the modify button let's say. And then save the changes the extension is lower case. If you do a modify command from the command window and save the changes the extension is upper case. Apparently the coders at Microsoft didn't worry about the extension case being the same.

link|flag
This confirms the pattern I've seen since I posted this question, thank you. – Kit Roed Feb 24 at 15:06
vote up 1 vote down

Kit, you comment above that VFP's binary-based source files are tough to work with in Subversion. The link I gave above mentions a couple of tools to make it easier, but the one I work with is Christof Wollenhaupt's TwoFox utility -- it converts a VFP project to text-only. You have to run it manually, but I don't have a problem with that.

http://www.foxpert.com/docs/cvs.en.htm

link|flag
Thanks Garret, however the download link for TwoFox is broken on the page you linked for. The conversion tool would be very handy as I was dealing with FoxPro-Subversion issues just this morning! Any other place I might be able to get a download for TwoFox or is there a better option out there? – Kit Roed Sep 16 '08 at 13:37
Sorry I didn't see this before -- for the record, I just checked Christof's site, and the download is still good. I'm guessing it was just a temporary glitch.... – SarekOfVulcan Mar 4 at 18:23
vote up 0 vote down

Why can't you just rename all those files to .PRG then once and for all? Or will FoxPro randomly change it to lowercase as well?

link|flag
vote up 2 vote down

I use TortoiseSVN with VFP, and it mostly-seamlessly handles the case flipping. The only time it doesn't is if I have the file open in the IDE when I try to do the commit: the file lock VFP holds confuses it. Is this where your problem comes in, or are there other issues?

I did a presentation at FoxForward last year about using VFP with Subversion: most of the presentation dealt with the command line, but there are a couple of slides at the end that have links to tools that help you work with Subversion in VFP. http://docs.google.com/Presentation?id=dfxkh6x4_3ghnqc4

link|flag
Thanks for the insight! VFP's binary-treated tables, forms, etc. are a challenge to work with in SVN. – Kit Roed Sep 11 '08 at 20:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.