Thanks for your notes Rob.
I have managed to get a working copy created and checked out. At least I think so. Using the TextMate Subversion bundle I tried to commit some file changes. No matter how I changed the files it always comes back with "nothing to commit, no modifications made".
Have been back and fine toothcombed the documentation on the TextMate website and come up with nothing more than "shift cmd A gets subversion menu up". Mind you the documentaiton for TextMate as a whole seems very thin to me so perhaps this is not unusual. Not your fault I know but I don't feel inclined to pay £50 for a software tool that isn't even documented.
Does anyone use the subversion bundle in TextMate to commit/checkout etc and can they point me to documentation that explains how to set it up and use it? Or do you all use TextMate for editing and handle Subversion stuff outside either command line or Versions or similar?
thanks
Rob McBroom wrote:
On 2009-Mar-24, at 9:45 AM, Lucy Buykx wrote:
I then open up my project in TextMate and want to commit my code to the repository. It tells me that my code is not a working copy, so I say ok, lets checkout. Then it asks me for svn+ssh:// something so I type in the file path of the repository and a big error message thus...
If your repository is on your local system, you can use file: instead of svn+ssh:.
So in your case, you probably want to checkout file:///Users/lucy/Sites/wed2/Repository . I've never tried to checkout into an existing directory that already has files in it, etc. I'm not sure exactly what you've done so far or what you're wanting to accomplish, but I generally do something like this when moving an existing project into Subversion.
- Create the repository with `svnadmin`.
- Use `svn import` to commit the existing project directory to the
repository. 3. Delete, rename, or move the project directory. 4. Use `svn checkout` to "recreate" the project directory as a working copy. 5. Open the new directory as a TextMate project.