Skip to content

Instantly share code, notes, and snippets.

View carstingaxion's full-sized avatar

Carsten Bach carstingaxion

View GitHub Profile
@carstingaxion
carstingaxion / git-wordpress.workflow.sh
Created September 23, 2012 12:47 — forked from dongilbert/git-wordpress.txt
From WordPress SVN to GitHub and back to SVN
### 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>