1,860
edits
Line 61: | Line 61: | ||
=== Staying up-to-date with the main repository === | === Staying up-to-date with the main repository === | ||
Octave development does not stand still while the students development proceeds. Octave's main repository gets updated, too. The following commands can be used to get these updated to the students clone of the main repository: | |||
<syntaxhighlight lang="bash"> | |||
hg pull https://www.octave.org/hg/octave # Get latest changes from main repo, bookmark "@" | |||
hg update -r my-gsoc # Select my bookmark | |||
hg merge @ # Merge changes of bookmark "@" to bookmark "my-gsoc" | |||
hg commit -m "maint: merge default to my-gsoc" | |||
< | hg push ssh://student@public.server.org/octave | ||
</syntaxhighlight> | |||
</ | |||
=== Preparing for code reviews === | === Preparing for code reviews === |