Reputation: 3221
I currently have an svn respository checked out to my local machine. How do I find the source URL that my changes are being checked into? (The URL of the actual repository).
Running Linux Ubuntu 11.10.
Thanks
Upvotes: 10
Views: 5282
Reputation: 4118
There's a file called entries
inside the .svn
folder which exists in your checked-out project's every directory. You can check inside of that and get your URL, username, and sometimes your password.
Upvotes: 2
Reputation: 4934
Try svn info
in your working directory and scan the output for URL:
and/or Repository Root:
.
Upvotes: 3