Skip to content

Instantly share code, notes, and snippets.

@gblnovaes
Forked from betooliveirame-zz/wp-project-install.sh
Created November 14, 2013 16:55
Show Gist options
  • Save gblnovaes/7470259 to your computer and use it in GitHub Desktop.
Save gblnovaes/7470259 to your computer and use it in GitHub Desktop.
Este script automatiza o processo de clonar e instalar o tema WP.
#!/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