Difference between revisions of ".git/config"

From wikieduonline
Jump to navigation Jump to search
 
Line 38: Line 38:
  
 
== See also ==
 
== See also ==
 +
* {{git config}}
 
* {{git}}
 
* {{git}}
  
 
[[Category:Git]]
 
[[Category:Git]]

Latest revision as of 14:13, 14 February 2022


Default .git/config file executing after git init

[core]
	repositoryformatversion = 0 
	filemode = true 
	bare = false
	logallrefupdates = true
[core]
	repositoryformatversion = 0 
	filemode = true
	bare = false
	logallrefupdates = true
	ignorecase = true
	precomposeunicode = true

Configuration after setting up git remote:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = [email protected]:your-project/your-repo.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
        remote = origin
        merge = refs/heads/main


Related terms[edit]

See also[edit]

Advertising: