Problem
You pushed your changes to GIT but you don’t see it in the repository.
Diagnosis
First thing is to compare status with log
git log
will give you a list of the commits. You will not see your changes here.
git status
You will see your files here. Above the list of files, you will see
Changes to be committed
Cause
The reason you don’t see your changes in repository is because they were not committed.
Solution
Run the following commands
git commit -m "some messsage"
git push origin your-branch