1,860
edits
(Put tutorials to External links.) |
(Overhaul Creating changesets (patches) section.) |
||
Line 12: | Line 12: | ||
* Always include commit messages in changesets. Please follow the Octave [[commit message 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. | * Follow the style guides for both [[Octave style guide|Octave]] and [[C++ style guide|C++]] languages. | ||
== Submitting patches == | == Submitting patches == | ||
Line 43: | Line 27: | ||
=== Creating changesets (patches) === | === Creating changesets (patches) === | ||
# Get the latest revision of Octave (or some Octave package) <pre>hg clone https://www.octave.org/hg/octave</pre> or when already cloned <pre>hg pull && hg update</pre> | |||
<pre> hg | # Make your changes (fix the bug) and save them. | ||
# Commit your changes. Mercurial will ask you for a commit message, which should follow the [[commit message guidelines]] <pre>hg commit</pre> | |||
# Export the changes. 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 | |||
<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! |