git-command-helper
Version:
github command helper for nodejs
38 lines (33 loc) • 1.77 kB
JavaScript
// git-command-helper 2.1.0 by Dimas Lanjaka <dimaslanjaka@gmail.com> (https://www.webmanajemen.com)
;
var dryHelper = require('./dry-helper.js');
var getGithubBranches = require('./getGithubBranches.js');
var getGithubCurrentBranch = require('./getGithubCurrentBranch.js');
var getGithubRemote = require('./getGithubRemote.js');
var getGithubRepoUrl = require('./getGithubRepoUrl.js');
var getGithubRootDir = require('./getGithubRootDir.js');
var gitignore = require('./gitignore.js');
var hasChanges = require('./hasChanges.js');
var isFileChanged = require('./isFileChanged.js');
var latestCommit = require('./latestCommit.js');
var originHelper = require('./origin-helper.js');
var parseGitHubUrl = require('./parseGitHubUrl.js');
var status = require('./status.js');
exports.dryRun = dryHelper.dryRun;
exports.isCanPush = dryHelper.isCanPush;
exports.getGithubBranches = getGithubBranches.getGithubBranches;
exports.getGithubCurrentBranch = getGithubCurrentBranch.getGithubCurrentBranch;
exports.getGithubRemote = getGithubRemote.getGithubRemote;
exports.getGithubRepoUrl = getGithubRepoUrl.getGithubRepoUrl;
exports.getGithubRootDir = getGithubRootDir.getGithubRootDir;
exports.getAllIgnoresConfig = gitignore.getAllIgnoresConfig;
exports.getGitignoreFiles = gitignore.getGitignoreFiles;
exports.getIgnores = gitignore.getIgnores;
exports.isIgnored = gitignore.isIgnored;
exports.gitHasChanges = hasChanges.gitHasChanges;
exports.isUntracked = isFileChanged.isUntracked;
exports.latestCommit = latestCommit.latestCommit;
exports.applyTokenToOriginUrl = originHelper.applyTokenToOriginUrl;
exports.applyUserToOriginUrl = originHelper.applyUserToOriginUrl;
exports.parseGitHubUrl = parseGitHubUrl.parseGitHubUrl;
exports.gitStatus = status.gitStatus;