git add filte to stage code example
Example 1: git add
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A
Example 2: git add all files
git commit -a -m "msg"
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A
git commit -a -m "msg"