This file contains 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
abbr -a g 'git' | |
abbr -a ga 'git add' | |
abbr -a gaa 'git add --all' | |
abbr -a gapa 'git add --patch' | |
abbr -a gb 'git branch' | |
abbr -a gba 'git branch -a' | |
abbr -a gbda 'git branch --merged | command grep -vE "^(\*|\s*master\s*\$)" | command xargs -n 1 git branch -d' | |
abbr -a gbl 'git blame -b -w' | |
abbr -a gbnm 'git branch --no-merged' | |
abbr -a gbr 'git branch --remote' |
This file contains 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
server { | |
listen 127.0.0.1:80; | |
server_name 127.0.0.1; | |
location /nginx_status { | |
stub_status on; | |
allow 127.0.0.1; | |
deny all; | |
} | |
} |