I think you haven’t committed the changes to git yet. First cimmit the changes to git and the push the changes to your git repo.
Git->add changes->commit changes->push changes.
Command to add
# git add .
# git commit -m “commit message”
# git push <remotename> <branchname>
(# git push origin master)
I hope this solves your problem.