Reputation: 221
I have to get the complete code of a project, like SVN checkout from TFS using the JAVA Sdk for TFS. What is the best way to go about it?
Upvotes: 0
Views: 245
Reputation: 788
You can acces the API of TFS, but it's not the best way to do. If you want just get the to work and back to repository, a normal cycle of development, you can use the command line!
To get the entire workspace:
tf get
To commit/checkin edited code:
tf checkin /comment:"New version of API"
You found the help commands of the tool in: Use Team Foundation version control commands
Upvotes: 3