Installation of git requires following steps:
- To check whether git has already installed on your system or not.
git --version
- To install all the packages of git.
sudo dnf install git
- Start to configure git with your information.
git config --global user.email < your_email > git config --global user.name < your_name >
- To view all details.
git config --list
Thank you,