Q.64 What are different SVN commands?
10 commonly used
commands
1. SVN Checkout – Create working copy
$ svn checkout/co URL PATH
2. SVN Commit – Save changes to the repository
$ svn commit -m "log messages"
3. SVN List – Lists directory entries
$ svn list
4. SVN Add – Add a new file to SVN repository
$ svn add thegeekstuff
5. SVN Delete – Removing a file from repository
$ svn delete thegeekstuff
6. SVN Diff – Display the difference
$ svn diff filename
$ svn -r R1:R2 diff filename
7. SVN Status – Status of the working copy
$ svn status PATH
8. SVN Log – Display log message
$ svn log PATH
9. SVN Move – Rename file or directory
$ svn move src dest
10. SVN Update – Update the working copy.
$ svn update PATH
No comments:
Post a Comment