Last active
September 11, 2019 14:43
-
-
Save thewarpaint/1e3d52917fd8bdd8f39252aa61ada010 to your computer and use it in GitHub Desktop.
Development env
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
if [ -f `brew --prefix`/etc/bash_completion.d/git-completion.bash ]; then | |
. `brew --prefix`/etc/bash_completion.d/git-completion.bash | |
fi |
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
[alias] | |
br = branch | |
co = checkout | |
ci = commit | |
cpk = cherry-pick | |
st = status | |
# Custom aliases | |
ln = "!git log --oneline -n \"$1\" #" | |
rbi = "!git rebase -i HEAD~\"$1\" #" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment