Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | sudo bash -s
| # install laravel under bash | |
| wget http://laravel.com/laravel.phar && chmod +x laravel.phar && mv laravel.phar /usr/local/bin/laravel | |
| # under fish | |
| wget http://laravel.com/laravel.phar ; chmod +x laravel.phar; mv laravel.phar /usr/local/bin/laravel | 
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | sudo bash -s
| git init # 初始化本地git仓库(创建新仓库) | |
| git config --global user.name "xxx" # 配置用户名 | |
| git config --global user.email "[email protected]" # 配置邮件 | |
| git config --global color.ui true # git status等命令自动着色 | |
| git config --global color.status auto | |
| git config --global color.diff auto | |
| git config --global color.branch auto | |
| git config --global color.interactive auto | |
| git config --global --unset http.proxy # remove proxy configuration on git | |
| git clone git+ssh://[email protected]/VT.git # clone远程仓库 | 
| [user] | |
| name = Metin Emiroğlu | |
| email = [email protected] | |
| [alias] | |
| di = diff | |
| dc = diff --cached | |
| st = status -s | |
| ci = commit -v | |
| co = checkout | |
| br = branch | 
| .vscode | |
| .idea | |
| .vs | |
| .DS_Store | |
| Thumbs.db | |
| .venv | |
| *.log | 
| [pytest] | |
| DJANGO_SETTINGS_MODULE = project_name_here.settings | |
| python_files = tests.py test_*.py *_tests.py | |
| junit_family=xunit1 | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8'> | |
| <meta http-equiv='X-UA-Compatible' content='IE=edge'> | |
| <title>Page Title</title> | |
| <meta name='viewport' content='width=device-width, initial-scale=1'> | |
| <link rel='stylesheet' type='text/css' media='screen' href='main.css'> | |
| <script src='main.js'></script> | |
| </head> |