Mercurial: Difference between revisions

Jump to navigation Jump to search
1,747 bytes added ,  9 April 2018
→‎Mercurial configuration: Add missing color "gray". Minor changes of spelling and whitespace.
(→‎Mercurial configuration: Add missing color "gray". Minor changes of spelling and whitespace.)
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
[[wikipedia:Mercurial]] (sometimes referred to as {{codeline|hg}}) is the version control tool used by Octave.
[[wikipedia:Mercurial|Mercurial]] (sometimes referred to as {{codeline|hg}})
This page contains some helpful commands to use when interacting with the GNU Octave mercurial repository.
is the source code management system currently used to develop
Octave.
 
== 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://www.mercurial-scm.org/wiki/Tutorial Mercurial tutorial]
* [https://www.mercurial-scm.org/wiki/QuickStart Mercurial quick start]
 
== Contributing to Octave ==
 
The preferred method to contribute to Octave is with Mercurial changesets.
Other forms of contributions (e.g., simple diff patches) are
also acceptable, but they slow down the review process.
 
If you plan on contributing to Octave:
 
* See other [[Contribution guidelines]]
* Always include commit messages in changesets.  Please follow the Octave [[commit message guidelines]]
* Follow the style guides for both [[Octave style guide|Octave]] and [[C++ style guide|C++]] languages.
 
== Getting the development sources ==
 
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
 
{{File||<pre>
[ui]
username = Your Name <your@email>
 
[extensions]
color =
histedit =
pager =
rebase =
strip =
 
[pager]
pager = LESS='FSRX' less
attend = help, annotate, cat, diff, export, glog, log, outgoing, incoming
 
[diff]
showfunc = True
 
[color]
mode = terminfo
 
## Custom colors
color.gray = 244
color.orange = 202
color.lightyellow = 191
color.darkorange = 220
color.brightyellow = 226
 
status.modified = magenta bold
status.added = green bold
status.removed = red bold
status.deleted = cyan bold
status.unknown = gray bold
status.ignored = gray bold
 
## Colours for each label
log.branch = cyan
log.summary = lightyellow
log.description = lightyellow
log.bookmark = green
log.tag = darkorange
log.graph = blue
 
## Colors for each phase
changeset.secret = blue bold
changeset.draft  = red bold
changeset.public = orange
 
desc.here = bold blue_background
 
[bookmarks]
track.current = True
 
[alias]
glog = log --graph
top = log --graph -l
</pre>}}
 
== Submitting patches ==


== 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 8: Line 108:
# 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].


=== Before starting ===
The way patches are generated uses an [http://mercurial.selenic.com/wiki/MqExtension extension] of mercurial and therefore you need to prepare your .hgrc file to use it.
If you do not have a .hgrc file, just create one in your home directory. In Windows, this is something like "C:\Documents and Settings\your_name\Mercurial.ini"


Add the following code to that file:
Patch submissions is done via the [https://savannah.gnu.org/bugs/?group=octave bug]
[ui]
or [https://savannah.gnu.org/patch/?group=octave patch] trackers. Either
username = Your Real Name <some@email.com>
way, you can submit via two different methods: pull requests on attaching
a changeset file.
[extensions]
 
hgext.mq =
=== Pull request ===
hgext.pager =
color =
[pager]
  pager = LESS='FSRX' less
attend = help, annotate, cat, diff, export, glog, log, qdiff, status, outgoing, incoming
## Colours I like
[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


The only part that is important is the extensions. The rest is to make hg behave in a fancy way (recommended).
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 with hg ===
 
=== Creating changesets files with hg ===
==== Simple way ====
==== Simple way ====
* Update to the latest revision.  
* Update to the latest revision.  
<pre> hg up </pre>
<pre> hg up </pre>
* Make your changes and save.  
* Make your changes and save them.  
* Commit your code following the [[commit message guidelines]].  
* Commit your code. Mercurial will ask you for a commit message, which should follow the [[commit message guidelines]].
<pre> hg ci </pre>
<pre> hg ci </pre>
* Export the modifications.  
* Export the modifications. This creates a file (in the case of the example below, it is called mypatch.patch) that contains a description of the changes that you've made. Someone else can then apply the patch and end up with a repository that looks the same as yours.
<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 tot he patch tracker.
* 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!
 
==== Using the MQ extension ====
In the repository you can start a patch by doing
hg qnew mychangeset
 
You can further edit your files... if you do, you need your patch to know about these changes. To do that execute
hg qrefresh
 
Once you think you have all the changes that make your patch complete you can export your patch
hg qdiff > mychangeset.patch
 
Now you can do (at least) two things
* Apply your patch to your copy (it will differ form the repository and you will have to merge somehow...). To do it run
hg qfinish tip
* Forget the changes and go back to the unpatched version of the code.
hg qrefresh
hg qpop
hg qfinish tip
 
The file mychangeset.patch contains your changes.
 


== Mercurial Tips for SoC students ==
== Mercurial Tips for SoC students ==
Line 137: Line 202:
   <code>hg commit </code><br/>
   <code>hg commit </code><br/>
   <code>hg export @ > mid-term-review.changeset </code><br/>
   <code>hg export @ > mid-term-review.changeset </code><br/>
   the file mid-term-review.changeset can then be sent to the [[mailto:octave-maintainers@octave.org mailing list]] or posted
   the file mid-term-review.changeset can then be sent to the [mailto:octave-maintainers@octave.org mailing list] or posted
   to the [[http://savannah.gnu.org/patch/?group=octave patch tracker]]</li>
   to the [https://savannah.gnu.org/patch/?group=octave patch tracker]</li>
   </ol> </li>
   </ol> </li>
</ol>
</ol>
Line 144: Line 209:
== Mercurial Tips for SoC mentors ==
== Mercurial Tips for SoC mentors ==


Will fill in this section after trying out the above procedure at least once with a student
Will fill in this section after trying out the above procedure at least once with a student and actually pushing his changes to the main repo.
and actually pushing his changes to the main repo.
 
<!---
<!---
<code>
<code>
Line 171: Line 234:
==External links==
==External links==


* [http://mercurial.selenic.com/ Official website]
* [https://www.mercurial-scm.org/ Official website]


[[Category:Development]]
[[Category:Development]]

Navigation menu