Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| composer global require phpunit/phpunit | |
| composer global require phpunit/dbunit | |
| composer global require phing/phing | |
| composer global require phpdocumentor/phpdocumentor | |
| composer global require sebastian/phpcpd | |
| composer global require phploc/phploc | |
| composer global require phpmd/phpmd | |
| composer global require squizlabs/php_codesniffer |
| # ~/.bashrc | |
| nf () { git checkout develop && git pull --all && git checkout -b feature/"$@" && git push origin feature/"$@" && git commit --allow-empty -m " ${@} #in-progress " && git push --all;} | |
| gc () { git add . && git commit -m " ${@} " && git push --all; } | |
| cf () { git checkout develop && git merge feature/"$@" && git push origin develop && git commit --allow-empty -m " ${@} #test " && git push --all; } |
| # to list SSH keys | |
| ls -al ~/.ssh | |
| # generate u key pair, substituing by ur Email account (github, bitbucket) | |
| ssh-keygen -t rsa -b 4096 -C "your_email@example.com" | |
| # initialize ssh agent | |
| eval "$(ssh-agent -s)" | |
| # add ssh agent in key | |
| ssh-add ~/.ssh/id_rsa | |
| # append ur public key in access key github||bitbucket | |
| ~/.ssh/id_rsa.pub |