how to do second commit in git code example
Example 1: git second commit
git add file1
git commit -m 'second commit'
Example 2: git second commit
git pull origin master
git push origin master
git add file1
git commit -m 'second commit'
git pull origin master
git push origin master