Last active
September 16, 2017 10:02
-
-
Save keks55/ef365d2f4f97cf301e32d77319365202 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
# git | |
alias ss='git status' | |
alias ff='git diff' | |
alias ll='git log' | |
alias show='git show' | |
# git add | |
alias dd='git add' | |
alias ddd='git add .' | |
alias cc='git commit -m' | |
alias ppp='git push -u origin master' | |
# braches | |
alias bb='git branch' | |
alias ck='git checkout' | |
alias ckk='git checkout -b' | |
alias bbb='git push --set-upstream origin' | |
alias mm='git merge' | |
alias del='git branch -D' | |
alias delete='git push origin --delete' | |
#[email protected]:keks55/qlanding.git | |
#git remote add origin [email protected]:keks55/qlanding.git | |
#git push -u origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment