parse the git config from the local .gitconfig file first

This commit is contained in:
risk danger olson 2015-04-20 10:38:17 -06:00
parent 434647d6f6
commit f18a260da8

@ -154,7 +154,7 @@ func (c *Configuration) loadGitConfig() {
panic(fmt.Errorf("Error listing git config from file: %s", err))
}
output = listOutput + "\n" + fileOutput
output = fileOutput + "\n" + listOutput
lines := strings.Split(output, "\n")
for _, line := range lines {