661
edits
Fgnievinski (talk | contribs) |
Carandraug (talk | contribs) (start updating. Specially drop, usage of the mercurial patch system) |
||
Line 1: | Line 1: | ||
[[wikipedia:Mercurial|Mercurial]] (sometimes referred to as {{codeline|hg}}) is the version control tool used by Octave. | [[wikipedia:Mercurial|Mercurial]] (sometimes referred to as {{codeline|hg}}) is | ||
This page contains some helpful commands to use when interacting with the GNU Octave mercurial repository. | the version control tool used by Octave. This page contains some helpful | ||
commands to use when interacting with the GNU Octave mercurial repository. | |||
== Introduction to mercurial == | |||
An introduction to mercurial is completely outside the scope of this document. | |||
There are plenty of available documentation on the topic. Some recommendations | |||
are: | |||
* [http://hginit.com/ Hg Init] | |||
* [https://mercurial.selenic.com/wiki/Tutorial Mercurial tutorial] | |||
* [https://mercurial.selenic.com/wiki/QuickStart Mercurial Quickstart] | |||
== Getting the development sources == | == Getting the development sources == | ||
You can | To clone the Octave repository: | ||
hg clone http://www.octave.org/hg/octave octave | |||
Octave packages like image, signal, control, etc. are not parts of Octave | |||
itself, they belong to the Octave Forge. Each package has its own | |||
repository, a list of which can be found | |||
[http://sourceforge.net/p/octave/_list/hg?source=navbar here]. | |||
You can clone them in a similar way, for example, to clone the signal package | |||
hg clone http://hg.code.sf.net/p/octave/signal octave-signal | |||
== Mercurial configuration == | |||
You can use the following to start your hgrc | |||
[ui] | |||
username = Your Name <your@email> | |||
[extensions] | |||
color = | |||
rebase = | |||
bookmarks = | |||
strip = | |||
histedit = | |||
hgext.pager = | |||
[pager] | |||
pager = LESS='FSRX' less | |||
attend = help, annotate, cat, diff, export, glog, log, qdiff, status, outgoing, incoming | |||
[diff] | |||
showfunc = true | |||
[color] | |||
status.modified = magenta bold | |||
status.added = green bold | |||
status.removed = red bold | |||
status.deleted = cyan bold | |||
status.unknown = gray bold | |||
status.ignored = gray bold | |||
[bookmarks] | |||
track.current = True | |||
[alias] | |||
log = log --graph | |||
== Submitting patches == | == Submitting patches == | ||
When you do not have push permissions to the repository (you cannot add your changes using mercurial itself) and you have a modification to the current GNU Octave code, you have to generate a patch (or changeset) so developers with permissions can include them in the code. The overview of the process is as follows | When you do not have push permissions to the repository (you cannot add your changes using mercurial itself) and you have a modification to the current GNU Octave code, you have to generate a patch (or changeset) so developers with permissions can include them in the code. The overview of the process is as follows | ||
# Change the code and test that your changes do work (write tests, that's the best!). | # Change the code and test that your changes do work (write tests, that's the best!). | ||
Line 21: | Line 71: | ||
# Post your patch in the [https://savannah.gnu.org/patch/?group=octave Patch tracker]. | # Post your patch in the [https://savannah.gnu.org/patch/?group=octave Patch tracker]. | ||
Patch submissions is done via the [https://savannah.gnu.org/bugs/?group=octave bug] | |||
or [https://savannah.gnu.org/patch/?group=octave patch] trackers. Either | |||
way, you can submit via two different methods: pull requests on attaching | |||
a changeset file. | |||
=== Pull request === | |||
=== Creating changesets with hg === | This is the cleaner way. You push your clone to public site, and ask on the | ||
bug tracker to pull a specific changeset from it. It makes special sense if | |||
you plan to send more patches in the future but requires to host the clone | |||
somewhere. Free mercurial repositories are available on [https://bitbucket.org/ bitbucket] | |||
=== Creating changesets files with hg === | |||
==== Simple way ==== | ==== Simple way ==== | ||
* Update to the latest revision. | * Update to the latest revision. | ||
Line 60: | Line 95: | ||
<pre> hg export -r tip -o mypatch.patch </pre> | <pre> hg export -r tip -o mypatch.patch </pre> | ||
* Save the output to a file and upload it to the patch tracker. If your patch file is larger than the upload limit, you can compress it before uploading. Please use a free format! | * Save the output to a file and upload it to the patch tracker. If your patch file is larger than the upload limit, you can compress it before uploading. Please use a free format! | ||
== Mercurial Tips for SoC students == | == Mercurial Tips for SoC students == |