Answers for "how to combine git add and commit in one line command"

5

git add commit in one command

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

Git add and commit in one command

git config --global alias.add-commit '!git add -A && git commit'
Posted by: Guest on February-07-2022

Code answers related to "how to combine git add and commit in one line command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language