This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Using Git with WordPress Plugin Development ### | |
# receive revision-number from WordPress Repository | |
svn log -r 1:HEAD --limit 1 http://plugins.svn.wordpress.org/your-plug-in-name | |
# clone to local folder | |
git svn clone -s -r<rev-number> --no-minimize-url https://plugins.svn.wordpress.org/<plugin-path> | |
# change to directory | |
cd <plugin-path> |