Created
September 8, 2015 12:54
-
-
Save JohnArchieMckown/a4b72eb33e5bcc8cdbb6 to your computer and use it in GitHub Desktop.
git config example - disables compression on push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
compression = 0 | |
looseCompression = 0 | |
[pack] | |
compression = 0 | |
window = 0 | |
[remote "origin"] | |
url = ???? | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
[branch "master"] | |
remote = origin | |
merge = refs/heads/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment