Anyone know anything about GitHub?

Code:
git add -A
git commit -m "Adding some stuff"
git push origin master

First line will add all updated files to commit.
Second line will create that commit with your message.
Third line will push commit to github server.
 
Top Bottom