.gitconfig: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
=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.
=Example=
<syntaxhighlight lang='text'>
[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
</syntaxhighlight>

Revision as of 22:38, 26 January 2023

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