Suchen

Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.

Chapter 2. Setting up to Manage Application Versions

download PDF

Effective version control is essential to all multi-developer projects. Red Hat Enterprise Linux is distributed with Git, a distributed version control system.

  1. Select the Development Tools Add-on during the system installation to install Git.
  2. Alternatively, install the git package from the Red Hat Enterprise Linux repositories after the system is installed.

    # yum install git
  3. To get the latest version of Git supported by Red Hat, install the rh-git227 component from Red Hat Software Collections.

    # yum install rh-git227
  4. Set the full name and email address associated with your Git commits:

    $ git config --global user.name "full name"
    $ git config --global user.email "email_address"

    Replace full name and email_address with your actual name and email address.

  5. To change the default text editor started by Git, set the value of the core.editor configuration option:

    $ git config --global core.editor command

    Replace command with the command to be used to start the selected text editor.

Additional Resources

Red Hat logoGithubRedditYoutubeTwitter

Lernen

Testen, kaufen und verkaufen

Communitys

Über Red Hat Dokumentation

Wir helfen Red Hat Benutzern, mit unseren Produkten und Diensten innovativ zu sein und ihre Ziele zu erreichen – mit Inhalten, denen sie vertrauen können.

Mehr Inklusion in Open Source

Red Hat hat sich verpflichtet, problematische Sprache in unserem Code, unserer Dokumentation und unseren Web-Eigenschaften zu ersetzen. Weitere Einzelheiten finden Sie in Red Hat Blog.

Über Red Hat

Wir liefern gehärtete Lösungen, die es Unternehmen leichter machen, plattform- und umgebungsübergreifend zu arbeiten, vom zentralen Rechenzentrum bis zum Netzwerkrand.

© 2024 Red Hat, Inc.