简体   繁体   中英

SVNKit , show list of files to commit

I almost use SVNKit API.

I make my client and I can not find a way to show files that can commit. In some of the clients such as Tortoise, we have change dialog with a list of files that have been modified. And we can choose files for "commit".

How can I extract the names/path of these files?

Does API allow you to do?

Thank you in advance

You may have a look at:

SVNCommitClient.doCommit(File[], boolean, String, SVNProperties, String[], boolean, boolean, SVNDepth).

It first collects committable files and directories with doCollectCommitItems() , returns the result in an SVNCommitPacket and then commits this packet by doCommit() . You may copy that code and customize SVNCommitPacket , especially use SVNCommitPacket.setCommitItemSkipped() to skip files.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM