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
[alias] | |
sts = status -s | |
st = !git fetch && git status | |
cm = commit | |
co = checkout | |
am = commit --amend --no-edit | |
w = whatchanged | |
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%C(62)\\ [%cn]\\ %ce" --decorate | |
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%C(62)\\ [%cn]\\ %ce" --decorate --numstat | |
cls = clean -xdf |
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
DBCC FREESYSTEMCACHE('All') | |
DBCC FREESESSIONCACHE | |
DBCC FREEPROCCACHE | |
DBCC DROPCLEANBUFFERS | |
--select ... from ... join ... where ... order by ... | |
OPTION (RECOMPILE) |
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
version: '3' | |
services: | |
traefik-reverse-proxy: | |
container_name: traefik | |
image: traefik:v2.2.1 | |
command: | |
- --api=true | |
- --api.dashboard=true | |
- --entrypoints.web.address=:80 |
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 branch --merged | egrep -v "(^\*|master|develop)" | xargs git branch -d |