Skip to content

Instantly share code, notes, and snippets.

@waznico
waznico / .gitconfig
Last active February 19, 2021 20:07
Git aliases for quicker commit and push
# For Git For Windows use:
[alias]
alias.sacp=!f() { git status && git add . && git status && git commit -m "$1" && git push; }; f
alias.sync=!f() { git pull && git push; }; f
alias.sacs=!f() { git status && git add . && git commit -m "$1" && git pull && git push; }; f
# For git on Mac/Linux use:
[alias]
sacp=!git status && git add . && git status && git commit -m "$1" && git push
sacs=!git status && git add . && git commit -m "$1" && git pull && git push