我正在尝试从 svn URL 签出代码库。当我对凭据进行硬编码或将其定义为属性时,它可以正常工作。我的问题是,是否可以在运行时(即当我运行 build.xml 脚本时)从用户那里获取凭据?
<target name="svn">
<svn **username="the username here" password="the password here"**>
<checkout url="the url" destPath="${checkout}" />
</svn>
</target>
提前致谢.. :)