Created
February 28, 2019 06:55
-
-
Save yakup/163542f78c624cfabc36ea8ecbdcdec5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# some aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias eb="sudo nano ~/.bash_profile && source ~/.bash_profile" | |
#docker aliases | |
alias d='docker' | |
alias dc='docker-compose' | |
alias dnax="docker rm $(docker ps -aq)" | |
#git aliases | |
alias g='git' | |
alias new="git checkout -b" | |
alias last="git log -2" | |
alias gg='git status' | |
alias lg="git log --pretty=format:'%h was %an, %ar, message: %s' --graph" | |
alias nah="git reset --hard && git clean -df" | |
alias squash="git rebase -i HEAD~2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment