Created
March 4, 2015 11:15
-
-
Save damianidaniele/007e2bd0011467745e34 to your computer and use it in GitHub Desktop.
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 ll="ls -al" | |
unalias ll | |
inside ~/.bash_profile: | |
# ------- | |
# Aliases | |
# ------- | |
alias clr="clear" # Clear your terminal screen | |
alias flush="sudo discoveryutil udnsflushcaches" # Flush DNS (Yosemite) | |
alias flush="killall -HUP mDNSResponder" # Flush DNS (Mavericks, Mountain Lion, Lion) | |
alias flush="dscacheutil -flushcache" # Flush DNS (Snow Leopard, Leopard) | |
alias ip="curl icanhazip.com" # Your public IP address | |
alias ll="ls -al" # List all files in current directory in long list format | |
alias ldir="ls -al | grep ^d" # List all directories in current directory in long list format | |
alias o="open ." # Open the current directory in Finder | |
alias ut="uptime" # Computer uptime | |
# ---------------------- | |
# Git Aliases | |
# ---------------------- | |
alias ga='git add' | |
alias gaa='git add .' | |
alias gaaa='git add -A' | |
alias gb='git branch' | |
alias gbd='git branch -d ' | |
alias gc='git commit' | |
alias gcm='git commit -m' | |
alias gco='git checkout' | |
alias gcob='git checkout -b' | |
alias gcom='git checkout master' | |
alias gd='git diff' | |
alias gda='git diff HEAD' | |
alias gi='git init' | |
alias gl='git log' | |
alias glg='git log --graph --oneline --decorate --all' | |
alias gld='git log --pretty=format:"%h %ad %s" --date=short --all' | |
alias gm='git merge --no-ff' | |
alias gp='git pull' | |
alias gss='git status -s' | |
alias gst='git stash' | |
alias gstl='git stash list' | |
alias gstp='git stash pop' | |
alias gstd='git stash drop' | |
# ---------------------- | |
# Git Functions | |
# ---------------------- | |
# Git log find by commit message | |
function glf() { git log --all --grep="$1"; } | |
then | |
source ~/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment