Dirk
Dirk

Reputation: 3221

How do I find my SVN source?

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

Answers (3)

Milad Naseri
Milad Naseri

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

u-punkt
u-punkt

Reputation: 4934

Try svn info in your working directory and scan the output for URL: and/or Repository Root:.

Upvotes: 3

hmjd
hmjd

Reputation: 121961

svn info should print the URL.

See svn info.

Upvotes: 18

Related Questions