This file contains hidden or 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
| ## Personal note: Muslims are not terrorists and I humbly request my engineering community to help end racism. | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # http://wiki.nginx.org/Pitfalls | |
| # http://wiki.nginx.org/QuickStart | |
| # http://wiki.nginx.org/Configuration | |
| # | |
| # Generally, you will want to move this file somewhere, and start with a clean | |
| # file but keep this around for reference. Or just disable in sites-enabled. | |
| # |
This file contains hidden or 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
| git config --global alias.a "! git add . && git status" | |
| git config --global alias.aa "! git add . && git add -u . && git status" | |
| git config --global alias.ac "! git add . && git commit" | |
| git config --global alias.acm "! git add . && git commit -m" | |
| git config --global alias.alias "! git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\ => \2/' | sort" | |
| git config --global alias.au "! git add -u . && git status" | |
| git config --global alias.c "commit" | |
| git config --global alias.ca "commit --amend" | |
| git config --global alias.cm "commit -m" | |
| git config --global alias.co checkout |