File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
packages/plugin-git/sources Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ releases :
2
+ " @yarnpkg/cli " : patch
3
+ " @yarnpkg/plugin-git " : patch
4
+
5
+ declined :
6
+ - " @yarnpkg/plugin-compat"
7
+ - " @yarnpkg/plugin-constraints"
8
+ - " @yarnpkg/plugin-dlx"
9
+ - " @yarnpkg/plugin-essentials"
10
+ - " @yarnpkg/plugin-github"
11
+ - " @yarnpkg/plugin-init"
12
+ - " @yarnpkg/plugin-interactive-tools"
13
+ - " @yarnpkg/plugin-nm"
14
+ - " @yarnpkg/plugin-npm-cli"
15
+ - " @yarnpkg/plugin-pack"
16
+ - " @yarnpkg/plugin-patch"
17
+ - " @yarnpkg/plugin-pnp"
18
+ - " @yarnpkg/plugin-pnpm"
19
+ - " @yarnpkg/plugin-stage"
20
+ - " @yarnpkg/plugin-typescript"
21
+ - " @yarnpkg/plugin-version"
22
+ - " @yarnpkg/plugin-workspace-tools"
23
+ - " @yarnpkg/builder"
24
+ - " @yarnpkg/core"
25
+ - " @yarnpkg/doctor"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ function makeGitEnvironment() {
11
11
return {
12
12
...process . env ,
13
13
// An option passed to SSH by Git to prevent SSH from asking for data (which would cause installs to hang when the SSH keys are missing)
14
- GIT_SSH_COMMAND : ` ssh -o BatchMode=yes`,
14
+ GIT_SSH_COMMAND : process . env . GIT_SSH_COMMAND || ` ${ process . env . GIT_SSH || ` ssh` } -o BatchMode=yes`,
15
15
} ;
16
16
}
17
17
You can’t perform that action at this time.
0 commit comments