Skip to content

Instantly share code, notes, and snippets.

@raghubetina
Last active April 27, 2024 14:56
Show Gist options
  • Save raghubetina/a9487967e0452c84047660fbde53a090 to your computer and use it in GitHub Desktop.
Save raghubetina/a9487967e0452c84047660fbde53a090 to your computer and use it in GitHub Desktop.
Git aliases
# ~/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