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"
しかし、それを実行すると、それでもユーザー名とパスを要求されるようです。
ビルドスクリプトの1つでこれと同じことを行いますが、このパラメーターも使用し--non-interactive(インタラクティブなプロンプトは表示しません)、かなりうまく機能しているようです。
--non-interactive
したがって、コマンドは次のようになります。
svn export --username bavhbavh --password blahblah --non-interactive svn://svn.someSite.com/folder/folder2/exportFile"