Last active
December 5, 2017 13:42
-
-
Save operatorofhell/cae8b2613bc8694f755a109cc0842e76 to your computer and use it in GitHub Desktop.
git config with multiple push urls to windows share
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 = false | |
bare = false | |
logallrefupdates = true | |
symlinks = false | |
ignorecase = true | |
[remote "origin"] | |
url = //host/tmp/a | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
pushurl = //host/tmp/a | |
pushurl = //host/tmp/b | |
[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