Answers for "git add and commit in same 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
0

git add and commit all in just one line

git add . && git commit -am "comment"
Posted by: Guest on July-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language