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
Very simple. Just follow these procedure: 1. git status 2. git add {File_Name} //the file name you haven been changed 3. git status 4. git commit -m '{your_message}' 5. git push origin master