goit add all code example
Example 1: Git add
git add .
git commit -m "Bug Fixed"
git push
Example 2: git add all files command
/*to add all the files in staging area at once*/
git add .
git add .
git commit -m "Bug Fixed"
git push
/*to add all the files in staging area at once*/
git add .