Last active
April 27, 2024 14:56
-
-
Save raghubetina/a9487967e0452c84047660fbde53a090 to your computer and use it in GitHub Desktop.
Git aliases
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
# ~/dotfiles-local/gitconfig.local | |
[alias] | |
aa = !git add -A | |
cm = !git commit | |
cmm = !git commit -m | |
p = !git push | |
l = !git add -A && git commit -m "WIP" | |
lp = !git add -A && git commit -m "WIP" && git push | |
# After adding, don't forget to `rcup` | |
# https://github.com/thoughtbot/dotfiles#make-your-own-customizations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment