source: trip-planner-front/node_modules/@npmcli/git/lib/opts.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 369 bytes
Line 
1// Values we want to set if they're not already defined by the end user
2// This defaults to accepting new ssh host key fingerprints
3const gitEnv = {
4 GIT_ASKPASS: 'echo',
5 GIT_SSH_COMMAND: 'ssh -oStrictHostKeyChecking=accept-new'
6}
7module.exports = (opts = {}) => ({
8 stdioString: true,
9 ...opts,
10 shell: false,
11 env: opts.env || { ...gitEnv, ...process.env }
12})
Note: See TracBrowser for help on using the repository browser.