Difference between revisions of "Git Configuration"
From Exterior Memory
(Created page with "This is my (system wide) git configuration: === ~/.gitconfig === [github] user = macfreek token = 112233445566778899aabbccddeeff00 [user] name...") |
(→~/.gitignore) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
=== ~/.gitconfig === | === ~/.gitconfig === | ||
− | + | [github] | |
− | + | user = macfreek | |
− | + | token = 112233445566778899aabbccddeeff00 | |
− | + | [user] | |
− | + | name = Freek Dijkstra | |
− | + | email = freek@macfreek.nl | |
− | + | [color] | |
− | + | diff = auto | |
− | + | status = auto | |
− | + | branch = auto | |
− | + | [core] | |
− | + | excludesfile = /Users/freek/.gitignore | |
− | + | [push] | |
− | + | default = simple | |
=== ~/.gitignore === | === ~/.gitignore === | ||
− | + | .DS_Store | |
+ | __pycache__ | ||
+ | *.pyc | ||
[[Category:Version Control Software]] | [[Category:Version Control Software]] |
Latest revision as of 11:50, 13 March 2023
This is my (system wide) git configuration:
~/.gitconfig
[github] user = macfreek token = 112233445566778899aabbccddeeff00 [user] name = Freek Dijkstra email = freek@macfreek.nl [color] diff = auto status = auto branch = auto [core] excludesfile = /Users/freek/.gitignore [push] default = simple
~/.gitignore
.DS_Store __pycache__ *.pyc