.git/config: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:


=Overview=
=Overview=
=Configuration Elements=
{{Internal|Git_Configuration#Configuration_Elements|Git Configuration | Configuration Elements}}


=Entries=
=Entries=

Revision as of 22:45, 9 January 2024

Internal

Overview

Configuration Elements

Git Configuration | Configuration Elements

Entries

[core]

[remote]

[remote] entires represent remotes for the current repository, and are manipulated by the git remote command.

[remote "origin"]
       url = https://gogs-cicd.apps.openshift.novaordis.io/gogs/novaordis-session-servlet.git
       fetch = +refs/heads/*:refs/remotes/origin/*

More than one [remote] entries are possible, in case the local repository has multiple remotes.

[branch]

See

Link a Local Branch to its Tracking Branch

[http]

See

Turn Off SSL Server Certificate Verification for a Specific Repository

[user]

Maintains user identity information, configured with git config.

   name = John Doe
   email = john@doe.com