'''1.''' Retrieve a list of available git tags. {{CodeSelect|code= git --no-pager tag }} '''2.''' Use git checkout to select the preferred version to build. Note: Replace {{{version}}} with the actual version chosen for the build: the stable, testers-only or developers version. Common sense is required when choosing the right version number. For example, the latest available version number is not necessarily the most stable or suitable. Follow the [[Stay Tuned|{{project_name_short}} News Blog]] as it might contain information. {{CodeSelect|code= git checkout {{{extra}}} {{{version}}} }} '''3.''' Digital signature verification. Optional. If you choose to perform digital signature verification above, you could verify the currently chosen commit ("HEAD") yet again for extra security. {{CodeSelect|code= git verify-commit HEAD }} '''4.''' Verify if you really got the version you want. {{CodeSelect|code= git describe }} Should show: {{{version}}} '''5.''' Check if source folder is pristine. {{CodeSelect|code= git status }} Should show nothing. HEAD detached at {{{version}}}
nothing to commit, working tree clean
If it shows something else, do not continue. '''6.''' Done. Version selection has been completed. [[Category:MultiWiki]]