add more than one file in git code example
Example 1: how to add multiple files in git
git add file1 file2 file3
Example 2: how to add one more file to my previous commit
git commit --amend
git add file1 file2 file3
git commit --amend