gitconfig
Version:
Run git config command
21 lines (16 loc) • 335 B
JavaScript
/**
* Run git config command
* @module gitconfig
*/
const _d = (module) => module && module.default || module
const fetchRepo = _d(require('./fetch_repo'))
const get = _d(require('./get'))
const set = _d(require('./set'))
const unset = _d(require('./unset'))
module.exports = {
fetchRepo,
get,
set,
unset
}