I have changed a single file in a subdirectory of my repository and I want to push just that file to Github.
I\'ve made a small change to one file, and I don\'t wa
git status #then file which you need to push git add example.FileExtension
git commit "message is example"
git push -u origin(or whatever name you used) master(or name of some branch where you want to push it)