Difference between revisions of "$HOME/.gitconfig"

From wikieduonline
Jump to navigation Jump to search
(Redirected page to Git config)
Tag: New redirect
 
m (Welcome moved page .gitconfig to $HOME/.gitconfig over redirect)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
#redirect [[Git config]]
+
<code>.gitconfig</code> file.
 +
[[$HOME]]/.gitconfig
 +
 
 +
https://groups.google.com/forum/#!topic/binary-transparency/f-BI4o8HZW0/discussion
 +
<pre>
 +
# for $deity's sake, check that anything we're getting is complete and sane on a regular basis
 +
[transfer]
 +
        fsckobjects = true
 +
[fetch]
 +
        fsckobjects = true
 +
[receive]
 +
        fsckObjects = true
 +
</pre>
 +
 
 +
 
 +
 
 +
# This is Git's per-user configuration file.
 +
[user]
 +
# Please adapt and uncomment the following lines:
 +
#      name = myuser
 +
#      email = [email protected]
 +
 +
name = myuser
 +
email = your_username@your_domain.com
 +
[credential]
 +
        [[helper]] = [[cache]]
 +
 
 +
 
 +
== Relate terms ==
 +
* <code>[[git config]]</code>
 +
* <code>[[.gitignore]]</code>
 +
* <code>[[.git/config]]</code>
 +
 
 +
== See also ==
 +
* {{git config}}
 +
* {{git}}
 +
 
 +
[[Category:Git]]

Latest revision as of 14:13, 14 February 2022

.gitconfig file.

$HOME/.gitconfig

https://groups.google.com/forum/#!topic/binary-transparency/f-BI4o8HZW0/discussion

 # for $deity's sake, check that anything we're getting is complete and sane on a regular basis
 [transfer]
        fsckobjects = true
 [fetch]
         fsckobjects = true
 [receive]
        fsckObjects = true


# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
#       name = myuser
#       email = [email protected]

name = myuser
email = your_username@your_domain.com
[credential]
        helper = cache


Relate terms[edit]

See also[edit]

Advertising: