Reputation: 12705
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
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