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.unstage 'reset HEAD --' | |
| git config --global alias.co checkout | |
| git config --global alias.br branch | |
| git config --global alias.mem '!git fetch origin main; git merge origin/main' | |
| git config --global alias.rem '!git fetch origin main; git rebase origin/main' | |
| git config --global alias.ci commit | |
| git config --global alias.st status | |
| git config --global alias.purge '!git fetch -p && git branch -vv | awk '"'"'/: gone]/{print $1}'"'"' | xargs git branch -d' | |
| git config --global alias.cleanup '!git branch --merged | grep -v '"'"'\*\|master\|develop|main'"'"' | xargs -n 1 -r git branch -d' | |
| git config --global alias.lc 'log -1 HEAD' |
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
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Text.RegularExpressions; | |
| using System.Web; | |
| using System.Web.Http; | |
| using System.Web.Http.Routing; | |
| using System.Web.Mvc; |