Difference between revisions of "Git Configuration"

From Exterior Memory
Jump to: navigation, search
(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]
+
[github]
        user = macfreek
+
    user = macfreek
        token = 112233445566778899aabbccddeeff00
+
    token = 112233445566778899aabbccddeeff00
    [user]
+
[user]
        name = Freek Dijkstra
+
    name = Freek Dijkstra
        email = freek@macfreek.nl
+
    email = freek@macfreek.nl
    [color]
+
[color]
        diff = auto
+
    diff = auto
        status = auto
+
    status = auto
        branch = auto
+
    branch = auto
    [core]
+
[core]
        excludesfile = /Users/freek/.gitignore
+
    excludesfile = /Users/freek/.gitignore
    [push]
+
[push]
        default = simple
+
    default = simple
  
 
=== ~/.gitignore ===
 
=== ~/.gitignore ===
    .DS_Store
+
.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