func EnableGITProxyConfiguration(proxyURL *url.URL) error {
    http := execute.Command{Cmd: "git", Args: []string{"config", "--global", "http.proxy", proxyURL.String()}}
    https := execute.Command{Cmd: "git", Args: []string{"config", "--global", "https.proxy", proxyURL.String()}}
    _, _, err := execute.RunCommand(http)
    if err != nil {