Answers for "git add . git commit in one command"

5

git add commit in one command

git commit -am "message"
Posted by: Guest on June-22-2020
1

git add, commit and push in one command

git config --global alias.cmp '!f() { git add -A && git commit -m "$@" && git push; }; f'
Posted by: Guest on October-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language