\documentclass{article}
\usepackage{ulem}
\usepackage{graphicx}
\usepackage{hyperref}
\pagestyle{headings}
\begin{document}
\part{git client}
A git client is highly recommended to facilitate setting up the base project and managing and restoring your configuration.<br />
Any recent 2.x version will do.

\section{<a href="https://wiki.horde.org/OpenSUSE">OpenSUSE</a>, SUSE Linux Enterprise}
<pre><code>
sudo zypper in git
</code></pre>
\section{Debian, Ubuntu}
<pre><code>
apt install git
</code></pre>
\section{Red Hat Enterprise Linux, Fedora, <a href="https://wiki.horde.org/CentOS">CentOS</a>}
<pre><code>
sudo yum install git
</code></pre>
\section{Windows 10/11}
\subsection{Using <a href="https://wiki.horde.org/WinGet">WinGet</a>}
<pre><code>
 winget install --id Git.Git -e --source winget 
 winget install -e --id GitHub.GitHubDesktop
</code></pre>
\subsection{Manually}
Get <a href="https://wiki.horde.org/GitHub">GitHub</a> Desktop and Git for Windows from their websites.

<a href="https://git-scm.com/download/win">https://git-scm.com/download/win</a><br />
<a href="https://desktop.github.com/">https://desktop.github.com/</a>

\end{document}
