Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6775255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:53:06+00:00 2026-05-26T15:53:06+00:00

I am trying to execute a command in Node: cd /www/foo/ && /path/to/git/bin/git.exe config

  • 0

I am trying to execute a command in Node:

cd "/www/foo/" && "/path/to/git/bin/git.exe" config --list --global

Basically, I want to execute a Git command that returns global configuration (for the current user).

This works fine for me when I execute the command directly on cli. It also works if I do it like this in Node:

var exec = require('child_process').exec;

var config = {
    maxBuffer: 10000 * 1024
};

exec('cd "/www/foo/" && "/path/to/git/bin/git.exe" config --list --global', config, function() {
    console.log(arguments);
});

However, as soon as I specify the environment to the config:

var exec = require('child_process').exec;

var config = {
    maxBuffer: 10000 * 1024,
    env: { // <--- this one
    }
};

exec('cd "/www/foo/" && "/path/to/git/bin/git.exe" config --list --global', config, function() {
    console.log(arguments);
});

Things break:

Command failed: fatal: unable to read config file
‘(null)/(null)/.gitconfig’: No such file or directory

I know the reason, it is because the executed Git program is no longer executed under the user environment (like it is in cli), and can’t retrieve the user directory to read global configuration (in Git, global config = user config) and I believe /(null)/(null)/.gitconfig should be /Users/MyName/.gitconfig which does exist.

My question is, how can I specify the current user environment while still being able to specify my own additional environment properties?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T15:53:07+00:00Added an answer on May 26, 2026 at 3:53 pm

    I solved it.

    I retrieved the current environment from process.env and extended it with my own properties:

    var environment = process.env;
    environment.customProp = 'foo';
    
    var config = {
        maxBuffer: 10000 * 1024,
        env: environment
    };
    

    So the problem was I missed the entire environment when I overwrote it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to execute this simple command: create table foo (clo int primary key
I'm trying to execute a command with io.popen in Lua, but the path contains
I'm trying to execute a command through system() in PHP. The command is /usr/bin/unzip,
I am trying to execute a command from php script using php exe function.
I was trying to execute a command through C#, but when I run the
I am trying to execute this SQL command: SELECT page.page_namespace, pagelinks.pl_namespace, COUNT(*) FROM page,
I'm trying to execute a SQL command, but I just can't find out why
I'm trying to access the command line and execute a command, and then return
Trying to execute shell command in background using pythons commands module >>>import commands >>>output
I am trying to execute unix command using SSH from cygwin. My set of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.