Ankita
Ankita

Reputation: 1923

How to check in any file from java code to svn branch

I want to implement a functionality in which I want to do some svn related operations for example:- update, commit, revert etc.. through my Java code.

Thanks in advance.

Upvotes: 0

Views: 2248

Answers (4)

johnnieb
johnnieb

Reputation: 4522

Check out the Subversion Java API.

Upvotes: 0

Owen
Owen

Reputation: 22887

If you're looking for a pure Java solution - check out SVNKit.

Upvotes: 0

Pram
Pram

Reputation: 2261

Have a look at SVNKit http://svnkit.com/.

Upvotes: 0

pavanlimo
pavanlimo

Reputation: 4252

Perhaps you should use ProcessBuilder or Runtime.exec() to call the actual commands of SVN.

Or you can directly use library like http://svnkit.com/

Upvotes: 1

Related Questions