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
#!/bin/bash | |
## basic commands | |
alias gst="git status" | |
alias gbr="git branch" | |
alias gdf="git diff" | |
alias gdfc="git diff --cached" | |
alias gco="git checkout" | |
alias gcob="git checkout -b" | |
alias gcm="git commit -m" |
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
## | |
## misc. aliases | |
## | |
alias da="deactivate" | |
alias c="clear" | |
alias bk="cd .." | |
alias rf="rm -rf" | |
## |
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
#!/bin/sh | |
# Redirect output to stderr. | |
exec 1>&2 | |
is_commit_clean=true | |
# invalid strings | |
consoleregexp='^\+.*console\.log\|fdescribe\|debugger' |