- Building Applications with Spring 5 and Kotlin
- Milo? Vasic
- 74字
- 2021-08-27 18:23:19
Fedora
The following are the steps to install Git on Fedora:
- Open Terminal.
- Depending on your Fedora version, use YUM or DNF to install Git as follows:
$ sudo dnf install git //or
$ sudo yum install git
- Verify the installation:
$ git -version
- The output should be something like the following:
git version 2.9.2
- Configure Git with the following commands:
$ git config --global user.name "Your Name" $ git config --global user.email "you@example.com"