git add several files 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 .
Example 3: git add .
git add <file> or you can do git add -A to add all files