Forked from betooliveirame-zz/wp-project-install.sh
Created
November 14, 2013 16:55
-
-
Save gblnovaes/7470259 to your computer and use it in GitHub Desktop.
Este script automatiza o processo de clonar e instalar o tema WP.
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 | |
git clone [email protected]:betooliveira79/WordPress.git portal-apadep | |
cd ./portal-apadep | |
git clone [email protected]:elshamah/portal-apadep.git wp-content | |
cd ./wp-content | |
git fetch | |
git checkout release/v1.0.0 | |
git pull origin | |
curl -sS https://getcomposer.org/installer | php | |
php composer.phar install | |
clear | |
git status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment