Git command line basics
you can add your modified files to the stage (index) using:
git add <filename>
or
git add *
Now your new/modified files are on the stage. If you want to store these files into the repository, you have to commit the changes using
git commit -m "commit message"
To upload the changes to the “master” branch on the original repository:
git push origin master