Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn.
Author: Kaspars Dambis
kaspars.net / @konstruktors
| mkdir ~/bin | |
| mkdir ~/bin/wp-cli | |
| cd ~/bin/wp-cli | |
| curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
| chmod +x wp-cli.phar | |
| echo "export COLUMNS" >> ~/.bashrc | |
| echo "alias wp='php ~/bin/wp-cli/wp-cli.phar'" >> ~/.bashrc | |
| echo "alias php='/usr/bin/php'" >> ~/.bashrc | |
| source ~/.bashrc | |
| echo "PATH=$HOME/bin:$PATH" >> ~/.bashrc |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn.
Author: Kaspars Dambis
kaspars.net / @konstruktors