diff options
Diffstat (limited to 'GIT_CONFIG.md')
-rw-r--r-- | GIT_CONFIG.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/GIT_CONFIG.md b/GIT_CONFIG.md new file mode 100644 index 0000000..077d7ba --- /dev/null +++ b/GIT_CONFIG.md @@ -0,0 +1,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/* +``` |