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?
Asked
Active
Viewed 131 times
-2
-
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
-
1Possible 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 Answers
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
-
You need to set your Github repo as the uptream for `push` to actually push there. – tripleee Jan 22 '18 at 18:03
-
Thats right, but this should be already done if OP followed (as mentioned) the guid from creating a repo on Github. – enno.void Jan 22 '18 at 18:08