-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.aliases
29 lines (25 loc) · 828 Bytes
/
.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
# GIT JUNK
alias gd='git diff'
alias gdc='git diff --cached'
alias gaa='git add .'
alias gss='gaa && git stash'
alias gsp='git stash pop'
alias ggpobf='git push origin "$(git symbolic-ref --short HEAD)" -f'
alias ggpob='git push origin "$(git symbolic-ref --short HEAD)"'
alias gpob='git pull origin "$(git symbolic-ref --short HEAD)" --rebase && git fetch'
alias gc='git commit -a -S -m'
alias gco='git checkout'
alias gcom='git checkout master'
alias gb='git branch'
alias gs='git status'
alias gcp='git cherry-pick'
# DEV JUNK
alias debug="dev debug server"
# RANDOM JUNK
alias asdf='git add . && git rebase --continue'
alias ls='ls -GFh'
alias please=sudo
alias rubytest='bundle exec rake test'
alias rubychecks='bundle exec rubocop'
alias runchecks='sewing-kit type-check && sewing-kit lint'
alias yeet='gpob && ggpob'