Restart terminal to take effect
== Using a version number ==
The "main" branch is the developing branch.<br>
It can contain bugs and be unstable.
You can update to latest version with
<syntaxhighlight lang="bash">
git pull
</syntaxhighlight>
You can also "check-out" the last "working version" of relax with
<syntaxhighlight lang="bash">
# This will tags used for the numbering
git tag -l '[0-9]*' -n
# If the latest version is 4.0.3
git checkout tags/4.0.3
# See version in top of output
./relax -i
</syntaxhighlight>
== See also ==
[[Category:Installation]]