Created
August 5, 2016 13:17
-
-
Save markjaquith/a00fb7ade6815357ebeb9f1b598c64fe to your computer and use it in GitHub Desktop.
Update all WordPress plugins using WP-CLI and make a separate git commit for each one
This file contains 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
#!/bin/bash | |
PLUGINS=$(wp plugin list --update=available --field=name | tr -d '\r'); | |
wp plugin update-all; | |
for plugin in $PLUGINS; do | |
git add -A "wp-content/plugins/$plugin"; | |
git commit -m "Update plugin: $plugin"; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment