Michael Z
Michael Z

Reputation: 3993

Identify svn branch

How I can identify what svn branch/tag points my code?

I have project that is checked out from svn. It has svn metainfo, i.e .svn folders. I want to know what svn path does my code point? Is that possible?

Upvotes: 0

Views: 132

Answers (1)

Rytmis
Rytmis

Reputation: 32037

Run svn info in the working copy, it'll identify the repository URL for the directory. Since branches and tags are just directories in svn, you'll be able to tell which branch you're working with.

Upvotes: 1

Related Questions