Sugar on a Stick/Documentation SOP: Difference between revisions

Mchua (talk | contribs)
mNo edit summary
Mchua (talk | contribs)
Line 76: Line 76:


==== If you have commit access ====
==== If you have commit access ====
Once you have edited the files you want to commit, make the commit.
git commit -a
Leave a commit message describing the change. Finally, push changes back to gitorious with
git push
If you are doing a push for the first time, you may need to specify the origin (this is due to a weird thing in gitorious). In order to do this:
git remote rm origin
git remote add origin gitorious@git.sugarlabs.org:soas-docs/mainline.git
git push origin master
You should be able to simply use <code>git push</code> thereafter.