I have a remote git repository and a local one that i work with. Whenever i do any changes locally, i push them to the remote. Then i sometime do a \"git commit\" on the rem
Here is another option.
git reset --mixed origin/master git add . git commit -m "Your message" git push origin master