1.2. Setting up to manage application versions
To manage application versions in multi-developer projects, use Git, a distributed version control system included in Red Hat Enterprise Linux.
Procedure
Install the
gitpackage:# dnf install gitOptional: Set the full name associated with your Git commits:
$ git config --global user.name "Full_Name"Optional: Set the email address associated with your Git commits:
$ git config --global user.email "email@example.com"Replace Full Name and email@example.com with your name and email address.
Optional: To change the default text editor started by Git, set the value of the
core.editorconfiguration option:$ git config --global core.editor commandReplace command with the command to be used to start the selected text editor.