.git/config

The content of .git/config is:
11[core][core]
22 repositoryformatversion = 0 repositoryformatversion = 0
33 filemode = true filemode = true
44 bare = false bare = false
55 logallrefupdates = true logallrefupdates = true
66[remote "origin"][remote "origin"]
77 url = /home/rene/github/github/git-internals/repos/branch_2/Alice url = /home/rene/github/github/git-internals/repos/branch_2/Alice
88 fetch = +refs/heads/*:refs/remotes/origin/* fetch = +refs/heads/*:refs/remotes/origin/*
99[branch "fixTypo"][branch "fixTypo"]
1010 remote = origin remote = origin
1111 merge = refs/heads/fixTypo merge = refs/heads/fixTypo
12[branch "master"]
13 remote = origin
14 merge = refs/heads/master


Return to example