Last active
April 15, 2020 13:02
-
-
Save Voltra/929e6806f08d6aeb166ae3641cb86d60 to your computer and use it in GitHub Desktop.
Bash Aliases
This file contains 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 git-add="git add ." | |
alias git-commit="git commit -a -m" | |
alias git-push="git push origin master" | |
alias git-pull="git pull origin master" | |
alias git-s="git status" | |
alias git-rm="git rm -r --cached ." | |
alias git-ac="git-add && git-commit" | |
alias gf="git flow" | |
alias git-b="git rev-parse --abbrev-ref HEAD" | |
alias gpush='git push origin $(git-b)' | |
alias gpull='git pull origin $(git-b)' | |
alias gffs="gf feature start" | |
alias gffp="gf feature publish" | |
alias gfff="gf feature finish -k" | |
alias gfrs="gf release start" | |
alias gfrf="gf release finish" | |
alias artisan="php artisan" | |
alias osquery="osqueryi" | |
alias rename="mv" | |
alias mksym="ln -s" | |
alias chmodsh="chmod +x *.sh" | |
alias downloadYtPlaylist="youtube-dl -i -f 140 --audio-format mp3 -o '%(title)s.%(ext)s'" | |
alias vscode="code ." | |
alias jq='\jq -C' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment