Apollo
Apollo

Reputation: 9064

How to update Github repo

If I have a github repository that I succesfully pushed code to from my local machine, how do I commit further update? I've tried git push origin master and this returns by saying "Everything Up to Date", when I know that I'm making changes to the files that are not being sent to github at all.

Upvotes: 0

Views: 381

Answers (1)

Antimony
Antimony

Reputation: 39461

You need to commit your new changes first.

git commit -a -m "Your message here"

Upvotes: 1

Related Questions