UNPKG

git-command-helper

Version:
29 lines (27 loc) 1.65 kB
// git-command-helper 2.1.0 by Dimas Lanjaka <dimaslanjaka@gmail.com> (https://www.webmanajemen.com) export { fixCaseSensitive } from './config/fix-case-sensitive.mjs'; export { forceEolLF } from './config/fix-end-of-line.mjs'; export { gitConfig } from './config/gitConfig.mjs'; export { dryRun, isCanPush } from './functions/dry-helper.mjs'; export { getGithubBranches } from './functions/getGithubBranches.mjs'; export { getGithubCurrentBranch } from './functions/getGithubCurrentBranch.mjs'; export { getGithubRemote } from './functions/getGithubRemote.mjs'; export { getGithubRepoUrl } from './functions/getGithubRepoUrl.mjs'; export { getGithubRootDir } from './functions/getGithubRootDir.mjs'; export { getAllIgnoresConfig, getGitignoreFiles, getIgnores, isIgnored } from './functions/gitignore.mjs'; export { gitHasChanges } from './functions/hasChanges.mjs'; export { isUntracked } from './functions/isFileChanged.mjs'; export { latestCommit } from './functions/latestCommit.mjs'; export { applyTokenToOriginUrl, applyUserToOriginUrl } from './functions/origin-helper.mjs'; export { parseGitHubUrl } from './functions/parseGitHubUrl.mjs'; export { gitStatus } from './functions/status.mjs'; export { git } from './git.mjs'; export { spawn, spawnSilent } from './spawn.mjs'; export { submodule as gitSubmodule } from './submodule.mjs'; import 'fs-extra'; import 'ini'; import 'upath'; export { safeURL } from './utils/safe-url.mjs'; export { default as spawnAsync } from './dependencies/@expo/spawn-async/build/spawnAsync.mjs'; export { spawn as crossSpawn, async as crossSpawnAsync, sync as crossSpawnSync, spawnSync } from 'cross-spawn'; //