-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.aliases
93 lines (89 loc) · 3.08 KB
/
.aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Aliases
alias ..='cd ../'
alias ...='cd ../../'
alias ....='cd ../../../'
alias agents="docker-compose up -d --scale agent=1 agent"
alias bld='yarn run build'
alias br='git branch'
alias branch='git branch'
alias branches='git branch --list'
alias c='git commit -m'
# sudo easy_install Pygments
alias cat='pygmentize -O style=monokai -f console256 -g'
alias ch='git checkout'
alias clone='gclone'
alias ciskip=emptyskipci
alias emptyciskip=emptyskipci
alias com='git commit -m'
alias commit='git commit -m'
alias coverage='yarn run test:coverage && open coverage/lcov-report/index.html -a Google\ Chrome'
alias cleanpyc='find . -name "*.pyc" -delete'
alias deleteDS='find . -name '\''.DS_Store'\'' -type f -delete'
alias dbr='git branch -D $1'
alias deletebranch='git branch -D $1'
alias dc='docker-compose'
alias dcd='docker-compose down -v'
alias dcu='docker-compose up'
alias fdiff='gFileDiff'
alias filediff='gFileDiff'
alias findbranch="findBranch"
alias g='git'
alias gdif="diffCompareStagingStats"
alias gdiff="diffCompareStaging"
alias gcom='git commit -m $1'
alias gcz='git-cz'
alias gdiff='git diff'
alias goops='git reset HEAD~1'
alias gpo='gpusho'
alias gprune='git fetch origin --prune && git branch --merged staging | grep -v '\''staging$'\'' | xargs git branch -d'
alias grevert='git checkout -- .'
alias gstash='git stash'
alias gunstash='git stash apply'
alias gupstream='git branch -u origin/$(headname)'
alias glog='git log --pretty=oneline'
alias headname='git rev-parse --abbrev-ref HEAD'
alias hardcommit='lookMomNoHands'
alias honk='yarn install && yarn start'
alias honkloud='rm -rf ./node_modules/ && yarn install && yarn start'
# Local https server: https://paulbrowne.xyz/https-localhost
alias https-server='http-server --ssl --cert ~/.ssl/localhost.crt --key ~/.ssl/localhost.key -a localhost -o'
alias ieslint='installeslint'
alias gander='yarn run test:js'
alias jesty='yarn run test:js'
alias jo='jojos'
alias joco='jojos co'
alias jojo='jojos'
alias joo='jojos open'
alias l='ls -a -G'
alias "gpg-keys"='gpg --list-secret-keys --keyid-format LONG'
alias "gpg-setkey"='gpgSetLocalKey'
alias master='git checkout master'
alias mmaster='merge_master'
alias mstag='merge_master'
alias mstaging='merge_master'
alias newbranch='git checkout -b'
alias ngrok='~/ngrok'
alias npmi='npm install'
alias npmii='rm -rf node_modules package-lock.json yarn.lock && npm install'
alias o='open'
alias ovs='open $1 -a Visual\ Studio\ Code'
# Easy access to dotfiles
alias profile='open ~/.profile'
alias aliases='open ~/.aliases'
alias functions='open ~/.functions'
# Safe deleting: https://www.npmjs.com/package/trash-cli
alias r='trash'
alias resetdb='fab reset_test_database'
alias sprofile='source ~/.profile'
alias stagin='git checkout staging'
alias staging='git checkout staging'
alias serve="python -m SimpleHTTPServer"
alias toweather='curl wttr.in/toronto'
alias weather='curl wttr.in/vancouver'
alias yank='git pull'
alias ygrunt='yarn install --pure-lockfile --force && yarn run dev'
alias yi='yarn install --pure-lockfile --force'
alias yr='yarn run'
alias yod='yarn outdated'
alias yrun='yarn run'
alias ytho='yarn why'