func reportCrashConfig() (opt string) { opt = os.Getenv("HUB_REPORT_CRASH") if opt == "" { opt, _ = git.GlobalConfig(hubReportCrashConfig) } return }
func getConfig(key string) (value string, err error) { value, err = git.Config(key) if value != "" && err == nil { return } value, err = git.GlobalConfig(key) return }
func autoUpdateConfig() (opt string) { if EnableAutoUpdate { opt, _ = git.GlobalConfig(hubAutoUpdateConfig) } else { opt = "never" } return }