Using your terminal/command line on linux or mac.
- FIRST: Update the version number in your readme.txt, and make sure the version is correct in the main plugin file.
- Change to your plugin directory (`cd`).
- Create a tag of the of the new version (change “1.0.4” to your current stable version number).
svn cp trunk tags/1.0.4
ls -a tags/1.0.4 rm -rf tags/1.0.4/.git* rm tags/1.0.4/README.md
- Update GIT staging.
git add -A .
- Review GIT changes.
git status
- Commit the changes to the GIT repo if all looks right.
git commit -m "Updating as it gets added to WP repo"
- Change directory back to plugin root.
cd ../
- Add items to SVN repo.
svn add * --force
- Review SVN changes.
svn status
- Commit SVN changes to the repo.
svn --username [username] --password [password] commit -m 'Short description of changes made'