Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是否可以在不提示用户并通过的情况下进行 SVN 导出?
我在命令中给出我的用户名并通过:
svn export --username bavhbavh --password blahblah svn://svn.someSite.com/folder/folder2/exportFile"
但是在运行它时,它似乎仍然要求我输入用户名并通过。
我在我的一个构建脚本中做了同样的事情,虽然我也使用了这个参数--non-interactive(不做交互式提示),而且它似乎工作得很好。
--non-interactive
所以你的命令看起来像这样:
svn export --username bavhbavh --password blahblah --non-interactive svn://svn.someSite.com/folder/folder2/exportFile"