issue: What I type:
git commit -am ""
git push origin master
It adds my modified xml file and commit and then push it into the master.
However, it didn't add the new files, which is the picture file itself.
By solving this:
git add
git commit -m ""
git push origin master
Comment