Reputation: 81
I switched my SVN working copy to a particular branch (or tag). Or did I? I can't remember. How can I tell what tag or branch is associated with my working copy? If I do a commit, how do I know where it will go?
Upvotes: 3
Views: 1346
Reputation: 81
Thanks!
I also RTFM'd the TortoiseSVN FAQ which notes that you can right-click and select Properties... (Windows Properties not SVN Properties) and click on the "Subversion" tab to view the URL (and other interesting things).
Upvotes: 4
Reputation: 70022
Right click on the working folder -> Repo Browser
Whatever path loads in the URL is where it was checked out from.
Upvotes: 3
Reputation: 162851
On the command line, from your working directory, type:
svn info .
This will tell you a lot of information, including the URL path which should indicate tag/branch folders assuming your svn repo follows the normal conventions for tag and branch folders.
Upvotes: 4