Dan
Dan

Reputation: 12705

How can I find the name/location of an SVN repository?

I have a number of files under version control with SVN, and I'm trying to switch to Git. However, it has been a long time since I made the repository, and I have forgotten its URL.

Is there some way to get the URL of the Subversion repository associated with a given file?

Upvotes: 1

Views: 80

Answers (2)

Moe Matar
Moe Matar

Reputation: 2054

Do something like:

svn info <file>

Run this on a given checked out file from the repository. It should give you more information about the file status and the repository URL.

Upvotes: 2

Sam Ruby
Sam Ruby

Reputation: 4340

Try the following command: svn info

Upvotes: 4

Related Questions