blob: 077d7ba5173bc5a874b9e10877d6a69538beef7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This is how I will remain in sync with upstream
```ini
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = git@github.com:ChausseBenjamin/dwm.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = upstream
merge = refs/heads/master
[branch "personal"]
remote = origin
merge = refs/heads/personal
[remote "upstream"]
url = git://git.suckless.org/dwm
fetch = +refs/heads/*:refs/remotes/upstream/*
```
|