Answers for "git add all files command"

5

add all files in directory to git

git add --all
git commit -am "<commit message>"
git push
Posted by: Guest on June-29-2020
2

git add all files

git commit -a -m "msg"
Posted by: Guest on September-22-2020
0

git add .

git add <file> or you can do git add -A to add all files
Posted by: Guest on April-15-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language