识别svn分支
我如何识别 svn branch/tag 指向我的代码?
我有一个从 svn 签出的项目。它有 svn 元信息,即 .svn 文件夹。 我想知道我的代码指向什么svn路径?这可能吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在工作副本中运行 svn info ,它将识别该目录的存储库 URL。由于分支和标签只是 svn 中的目录,因此您将能够知道您正在使用哪个分支。
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.