Created
September 9, 2015 10:37
-
-
Save malinky/f5c628f4a2c86efa026f to your computer and use it in GitHub Desktop.
Wordpress Plugin SVN
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
# Checkout (Don't need LOCAL-DIR if already in it) | |
svn co https://plugins.svn.wordpress.org/PLUGIN-NAME/ LOCAL-DIR | |
# Let svn know about new files ready for a commit (after adding the actual files to the local directory) | |
# Don't need this if amending an exists versioned file | |
svn add DIR/* | |
svn add DIR/FILENAME | |
# What's changed between local and svn repository | |
svn stat | |
# Check diffs | |
svn diff | |
# Commit | |
svn ci -m "Message" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment