https://github.com/mrmartineau/SetiUI-Icons-Sublime
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
choco feature enable -n allowGlobalConfirmation
choco install 7zip fiddler4 git.install nodejs.install notepad2 nuget.commandline SublimeText3 SublimeText3.PackageControl awscli awssdk-tools dotnet3.5 mssqlservermanagementstudio2014express mssqlserver2014express
git config --global user.name "Alberto Monteiro"
git config --global user.email [email protected]
git config --global core.editor "subl -n -w"
[user]
name = Alberto Monteiro
email = [email protected]
[core]
preloadindex = true
fscache = true
autocrlf = true
editor = subl -n -w
[alias]
st = status
pr = pull
co = checkout
up = pull --rebase --prune
recommit = commit -a --amend --no-edit
ec = config --global -e
up = !git pull --rebase --prune $@ && git submodule update --init --recursive
cob = checkout -b
cm = !git add -A && git commit -m
save = !git add -A && git commit -m 'SAVEPOINT'
wip = !git add -u && git commit -m "WIP"
undo = reset HEAD~1 --mixed
wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f"
previouscommitfrom = "git log --pretty=%P -n 1"
[gc]
auto = 256
[push]
default = matching