How can I find the name/location of an SVN repository?
I have a numbe开发者_StackOverflowr 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?
Try the following command: svn info
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.
精彩评论