This guide installs Git and creates a repository.
sudo apt update
sudo apt install -y git
sudo dnf install -y git
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
mkdir myrepo
cd myrepo
git init
Feel free to contact us. Find all contact information on our contact page.