We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modify the following function and any other that handle git remotes to handle the git protocol: [email protected]/rancher/charts:
git protocol: [email protected]/rancher/charts
// CheckFileExists checks if a file exists in the git repository for a specific branch func (g *Git) CheckFileExists(file, branch string) error { upstreamRemote := g.Remotes["https://github.com/rancher/charts"] target := upstreamRemote + "/" + branch + ":" + file return exec.Command("git", "-C", g.Dir, "cat-file", "-e", target).Run() }
The text was updated successfully, but these errors were encountered:
nicholasSUSE
No branches or pull requests
Modify the following function and any other that handle git remotes to handle the
git protocol: [email protected]/rancher/charts
:The text was updated successfully, but these errors were encountered: