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
Suppose I'm trying to download a repo using the GitGetter:
GitGetter
git::https://github.acme.com/team/repo
Under the hood, something like this gets executed:
git clone https://github.acme.com/team/repo /tmp/dir
The server expects me to send some extra headers. From my shell I can clone with:
git clone -c http.extraHeader='header: val' https://github.acme.com/team/repo /tmp/dir
What is the idiomatic to pass extra args to git clone (source code)?
git clone
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suppose I'm trying to download a repo using the
GitGetter
:Under the hood, something like this gets executed:
The server expects me to send some extra headers. From my shell I can clone with:
What is the idiomatic to pass extra args to
git clone
(source code)?The text was updated successfully, but these errors were encountered: