VisualSVN获取特定文件
我是 VisualSVN 的新手,我想知道您是否可以获得已添加到上层目录中源代码管理的特定文件,而无需更新整个目录(通过 Windows 资源管理器)。例如,如果同事将配置文件添加到解决方案的根目录,我如何在不获取最新/更新整个解决方案文件夹的情况下获取我的计算机的特定文件?
I'm new to using VisualSVN, and I wanted to know if you can get a specific file that has been added to source control in an upper level directory without have to update the entire directory (through windows explorer). For instance, if a co-worker adds a config file to the root directory of a solution, how do I get that specific file for my machine without getting latest/updating the entire solution folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用直接链接到文件来执行
svn导出
(例如svn导出http://svn.example.com/svn/repo1/config.xml
)。此操作可以使用 Windows 资源管理器上下文菜单中的 Tortoise SVN 来完成。但请记住,svn export
只是下载文件的一种方式,没有任何版本控制。您还可以进行稀疏结帐(请参阅此答案)。
You can do
svn export
using direct link to file with (e.g.svn export http://svn.example.com/svn/repo1/config.xml
). This operation could be done using Tortoise SVN from Windows Explorer context menu. But keep in mind, thatsvn export
is just a way to download file, wtihout any version control on it.You also can do a sparse checkout (see this answer).