All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| # 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 |
| # ~/.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; } |
| 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 |