- 论坛徽章:
- 0
|
我使用vss6.0 , 在/project/文档1.txt 手工Label了v5.0 ,然后ant脚本取出来:
<!-- ======== -->
<!-- 指定版本取文件 -->
<!-- ======== -->
<target name="get label v5.0">
<vssget localpath="${rootdir}" serverPath="${vss.serverPath}" ssdir="${vss.ssdir}" recursive="true" login="wen,1234" vsspath="/project" writable="true" label="v5.0" autoresponse="Y" />
</target>
失败了!
get label v5.0:
[vssget] Version not found
BUILD FAILED
后来我改了vsspath成功了!
<target name="get label v5.0">
<vssget localpath="${rootdir}" serverPath="${vss.serverPath}" ssdir="${vss.ssdir}" recursive="true" login="wen,1234" vsspath="/project/文档1.txt" writable="true" label="v5.0" autoresponse="Y" />
</target>
get label v5.0:
[vssget] 文档1.txt
BUILD SUCCESSFUL
奇怪的是vsspath如果不指定文件名称的话,根本取不到文件呢,难道是recursive="true" 不起作用?手工Label了的文件怎么取出来? |
|