svn add
svn add - Add files and directories to your working copy and schedule them for addition to the repository. They will be uploaded and added to the repository on your next commit.
svn add --non-recursive testDir - You can add a directory without adding its contents
svn add * --force - If you want to add every unversioned object in your working copy
svn update
svn up | svn update - Update your working copy.
svn up -r8000 update your working copy to an older revision (revision 8000)
svn checkout
svn co | svn checkout - Check out a working copy from a repository.
svn co https://wso2.org/repos/wso2
svn delete
svn del | svn delete - Delete an item from a working copy or the repository.
svn del testDir
svn mkdir
svn mkdir - Create a new directory under version control.
svn mkdir testDir
svn commit
svn ci | svn commit - Send changes from your working copy to the repository.
svn ci -m "Added new functionality."
Read more: Kasun's Blog
0 comments:
Post a Comment