-2

I recently created a project and I uploaded it to GitHub using GitHub instructions.Now I have made changes to my project and want to update my project on Github.How do I proceed?

i_love_pizza
  • 1
  • 2
  • 4
  • a possible answer to your question. [link](https://stackoverflow.com/questions/40273324/github-how-to-update-my-own-repository) – muneeb_ahmed Jan 22 '18 at 17:55
  • Have a look [here](https://stackoverflow.com/a/43364619/5784831) – Christoph Jan 22 '18 at 18:00
  • 1
    Possible duplicate of [How to commit to remote git repository](https://stackoverflow.com/questions/10364429/how-to-commit-to-remote-git-repository) – phd Jan 22 '18 at 18:34

1 Answers1

1

Add your local changes to a commit via

git add "filename"

Then commit your changes

git commit "Your message"

And push it to the remote

git push
enno.void
  • 6,242
  • 4
  • 25
  • 42