Skip to content

Instantly share code, notes, and snippets.

@mathieucarbou
Last active September 18, 2019 13:58
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mathieucarbou/0ebb8b30224425d96772 to your computer and use it in GitHub Desktop.
Save mathieucarbou/0ebb8b30224425d96772 to your computer and use it in GitHub Desktop.
// handle some git configuration for windows
exports.spawn = spawnGit
exports.chainableExec = chainableExec
exports.whichAndExec = whichAndExec
var exec = require("child_process").execFile
, spawn = require("./spawn")
, npm = require("../npm.js")
, which = require("which")
, git = npm.config.get("git")
, assert = require("assert")
, log = require("npmlog")
, win32 = process.platform === "win32"
, cygwin = win32 && (process.env.ORIGINAL_PATH || '').indexOf('/cygdrive/') != -1
function prefixGitArgs () {
return win32 ? ["-c", "core.longpaths=true"] : []
}
function execGit (args, options, cb) {
if(cygwin && args) {
for(var i=0; i<args.length; i++) {
if(':\\'.indexOf(args[i]) != 1) {
args[i] = args[i].replace(/\\/g, '/').replace(/^([A-Za-z])\:\//, '/cygdrive/$1/');
}
}
}
var fullArgs = prefixGitArgs().concat(args || [])
log.info('git', fullArgs)
return exec(git, fullArgs, options, cb)
}
function spawnGit (args, options) {
log.info("git", args)
return spawn(git, prefixGitArgs().concat(args || []), options)
}
function chainableExec () {
var args = Array.prototype.slice.call(arguments)
return [execGit].concat(args)
}
function whichGit (cb) {
return which(git, cb)
}
function whichAndExec (args, options, cb) {
assert.equal(typeof cb, "function", "no callback provided")
// check for git
whichGit(function (err) {
if (err) {
err.code = "ENOGIT"
return cb(err)
}
execGit(args, options, cb)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment