how to add all files in git at once code example
Example 1: how to add multiple files in git
git add file1 file2 file3
Example 2: git add all files command
/*to add all the files in staging area at once*/
git add .
git add file1 file2 file3
/*to add all the files in staging area at once*/
git add .