Changes

Jump to: navigation, search

How-Tos

1,966 bytes added, 12:54, 4 December 2008
Mercurial
==Mercurial==
 
<hr style="height:5px;width:15%;background-color:Peru;">
<br/>
{|style="background-color:PaleGoldenrod;width:90%;align:center;margin-left:auto;margin-right:auto;"
|
'''<span style="color:DarkRed">Step 1</span>'''
<blockquote>
<pre>Download the .patch or .diff file onto your machine</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 2</span>'''
<blockquote>
<pre>Navigate to the repo that you want to install the patch to i.e. testRepo
(I will using repo name for this example, substitute it with your repo name when you are trying to apply a patch yourself)</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 3</span>'''
<blockquote>
<pre>Open testRepo\.hg\hgrc (the config file)</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 4</span>'''
<blockquote>
<pre>Add the following to hgrc and save (This enables queues for hg so that we can use commands that we need, qimport and qpush)[extensions]
hgext.mq =</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 5</span>'''
<blockquote>
<pre>Now open up a command prompt and navigate to your repo directory</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 6</span>'''
<blockquote>
<pre>Type in hg qimport <<full-path-of-patch-file>> and press enter</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 7</span>'''
<blockquote>
<pre>The above command should create a patch folder within testRepo\.hg\patches\</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 8</span>'''
<blockquote>
<pre>Next navigate to testRepo\.hg\patches\</pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 9</span>'''
<blockquote>
<pre>Type in hg qpush <<patch-file-name>></pre>
</blockquote>
 
'''<span style="color:DarkRed">Step 10</span>'''
<blockquote>
<pre>Done! The patch should have been applied (if you get an error such as “abort: local changes found,
refresh first” then that means you have made changes to the original files and the patch won’t work)</pre>
</blockquote>
 
|}
 
==Open Office==
==Eclipse==

Navigation menu