Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This allows arbitrary git configs to be passed in. For example:
git config --global http.postBuffer 1048576000
git config --global http.sslCAInfo /path/to/cert/file
git config --global http.sslVerify false
This flag takes a comma-separated list of
key:val
pairs. The key partis passed to
git config
and must be a valid gitconfig section headerand variable name. The val part can be either a quoted or unquoted
value. For all values the following escape sequences are supported:
\n
=> [newline]\t
=> [tab]\"
=>"
\,
=>,
\\
=>\
Within unquoted values, commas MUST be escaped. Within quoted values,
commas MAY be escaped, but are not required to be. Any other escape
sequence is an error.
Example:
--git-config=foo.one:val1,foo.two:"quoted val",foo.three:12345
This commit exposed a bug in runCommand() which modified its args when
they had an embedded space.
Fixes #235
Fixes #340
Replaces #240 (thanks to @onesolpark for starting it)