SVN simple notes
I wrote some interesting WordPress plugins one year ago, and I recevied lots of comments and suggestions on these plugins. They are very helpful, but I didn’t have enough to replay them and to improve my plugins. Today, after receiving a very long and careful comment, I think I have the responsibility to make some progress.
My plugins are hosted in wordpress.org. They prefer SVN to manager these small projects. So I spent a little time on SVN to upgrade my plugins. Here is some notes:
Take on of my small project for example: the repo of plugin automatic-tag-link is http://svn.wp-plugins.org/automatic-tag-link/
FIrst, create a folder as a local SVN repo.
mkdir automatic-tag
then, restore the files from remote SVN repo.
svn co http://svn.wp-plugins.org/automatic-tag-link automatic-tag
so, we can modify the files, when finish, we should commit it to the SVN server.
svn ci -m “some messages”
if we add some new files(eg, newfiles.php), before commiting, we should add it to the repo.
svn add newfiles.php


