This sounds like you're using the file:///
protocol. Don't. This protocol is for very, very, specific circumstances. If you share a repository between users or between machines, you cannot use it.
Use the svnserve
or the Apache httpd
server instead. Setting these up is explained in Chapter 6 of the on line Subversion book.
The svnserve
is fast and simple. You can probably set up the svnserve
process in a matter of minutes. There are even directions for setting up svnserve
as a Windows service. This means that as soon as you turn on your Windows machine, your repository is available, and you can do your checkout on your Mac. The only downside is that your network or firewall maybe filtering out port 3690 which is used by svnserve
by default. (This can be changed, but you'll have to make sure your clients know the correct port number).
You can also use something like VisualSVN Server which will setup Apache httpd
and configure the subversion module for you. It's GUI setup, and it uses port 80 by default which usually isn't blocked.
The only time you should be using file:///
is when you first initially play around with Subversion in order to learn it, or for some web-based clients that allow you to see (but not modify) information in your repository (and mainly because that's the only way you can configure them). Otherwise, even if you're using Subversion all by your self on a single machine, you still shouldn't be using it.
If you have network issues which makes using an always up version control system impossible to use, use a distributed system like Git instead. Git is a bit more complex to use, but because the repository is kept in multiple places (there's no master copy), you can still do your work when there's no network connectivity, and merge your changes into the other repos when you do have connectivity.
One more thing
I found this post on using Git with Dropbox. You cannot do this with Subversion -- even with svnserve
(although see note below). This may be the best way for you to work. You put your repo on Dropbox, but never work directly with your repo. Instead, you clone it elsewhere, and then push your changes back to the Dropbox repo.
The Note Below
I want you to understand that you did not hear this from me. If you are ever interrogated by the police, I will deny everything, and round up eye witnesses who will put me far, far from the scene of the crime:
I've seen people put their Subversion repository on Dropbox, then run svnserve
on their machine to access that repository. They've successfully done this in mixed Mac, Windows, and Linux environments. However, note they're running svnserve
. Note this is their private repository. Note that no one else is using it. Note that they never access that repository from more than one machine at a time. Note that I am denying I ever stated this. Note that this is sold as is with no implied warranty.
If you really, really want to use Subversion, and you really, really need access to multiple systems, and you don't have a good way to do the networking, and you understand that this is not supported and everything is done at your own risk, you can give this a try. No guarantees, but there are people who do this.