/ Published in: Bash
Expand |
Embed | Plain Text
# remove all .svn files from the current dir find . -name ".svn" -exec rm -rf {} \; # update current svn project svn up # get diff for current svn project svn diff # get diff for a file svn diff application/controllers/IndexController.php # get missing files on server svn status # remove a file from the repository svn delete servers.sql # commit changes to the repository svn commit -m "new baseline dump" baselinedump.sql # add new files for current svn project svn add tests/application/controllers application/models/DbTable application/controllers/ServerSummaryController.php # edit directory properties svn propedit svn:ignore .
You need to login to post a comment.
