Tips and tricks
How to add a plugin to the WordPress repository
Install the svn via homebrew or from their website
brew install svn
Update the plugin
cd /Users/raduh/Dropbox/hosts/devsite/wpenabledebug/svn2 svn co https://plugins.svn.wordpress.org/your-plugin/ cd your-plugin svn add trunk/* svn ci -m 'Adding first version of my plugin' svn cp trunk tags/2.0 svn ci -m "tagging version 2.0"
useful tips:
you can use to resolve conflicts
svn update svn resolve