.gitconfig: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=Internal=
=Internal=
* [[git Configuration]]
* [[Git_Configuration#Files|Git Configuration]]
 
=Overview=
=Overview=
The configuration file that keeps the global configuration values, those manipulated with <code>--global</code> option.
The configuration file that keeps the global configuration values, those manipulated with <code>--global</code> option.

Revision as of 22:14, 9 January 2024

Internal

Overview

The configuration file that keeps the global configuration values, those manipulated with --global option.

Example

[filter "lfs"]
	required = true
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
[user]
	name = Ovidiu Feodorov
	email = ovidiu@example.com
[push]
	autoSetupRemote = true