Created
December 4, 2019 21:30
-
-
Save mrjamiebowman/ddd3a448cbdf193987b812911502513c to your computer and use it in GitHub Desktop.
.bashrc
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
# git alias | |
alias ll='ls -l' | |
alias ls='ls -F --color=auto --show-control-chars' | |
alias r='reset' | |
alias cs='clear; git status' | |
alias rs='reset; git status' | |
alias gp='git push' | |
# git commands | |
function n () { | |
echo "git log -n$1 --oneline" | |
git log -n"$1" --oneline; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment