UNPKG

simple-git

Version:

Simple GIT interface for node.js

487 lines (418 loc) 21.4 kB
import * as resp from './response'; import * as types from './types'; export interface SimpleGitFactory { (baseDir?: string, options?: Partial<types.SimpleGitOptions>): SimpleGit; (baseDir: string): SimpleGit; (options: Partial<types.SimpleGitOptions>): SimpleGit; } type Response<T> = SimpleGit & Promise<T>; export interface SimpleGit { /** * Adds one or more files to source control */ add(files: string | string[], callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Add an annotated tag to the head of the current branch */ addAnnotatedTag(tagName: string, tagMessage: string, callback?: types.SimpleGitTaskCallback<{ name: string }>): Response<{ name: string }>; /** * Add config to local git instance for the specified `key` (eg: user.name) and value (eg: 'your name'). * Set `append` to true to append to rather than overwrite the key */ addConfig(key: string, value: string, append?: boolean, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Configuration values visible to git in the current working directory */ listConfig(callback?: types.SimpleGitTaskCallback<resp.ConfigListSummary>): Response<resp.ConfigListSummary>; /** * Adds a remote to the list of remotes. * * - `remoteName` Name of the repository - eg "upstream" * - `remoteRepo` Fully qualified SSH or HTTP(S) path to the remote repo * - `options` Optional additional settings permitted by the `git remote add` command, merged into the command prior to the repo name and remote url */ addRemote(remoteName: string, remoteRepo: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Add a lightweight tag to the head of the current branch */ addTag(name: string, callback?: types.SimpleGitTaskCallback<{ name: string }>): Response<{ name: string }>; /** * Equivalent to `catFile` but will return the native `Buffer` of content from the git command's stdout. */ binaryCatFile(options: string[], callback?: types.SimpleGitTaskCallback<any>): Response<any>; /** * List all branches */ branch(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.BranchSummary>): Response<resp.BranchSummary>; /** * List of local branches */ branchLocal(callback?: types.SimpleGitTaskCallback<resp.BranchSummary>): Response<resp.BranchSummary>; /** * Returns a list of objects in a tree based on commit hash. * Passing in an object hash returns the object's content, size, and type. * * Passing "-p" will instruct cat-file to determine the object type, and display its formatted contents. * * @see https://git-scm.com/docs/git-cat-file */ catFile(options: string[], callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Check if a pathname or pathnames are excluded by .gitignore * */ checkIgnore(pathNames: string[], callback?: types.SimpleGitTaskCallback<string[]>): Response<string[]>; checkIgnore(path: string, callback?: types.SimpleGitTaskCallback<string[]>): Response<string[]>; /** * Validates that the current working directory is a valid git repo file path. * * To make a more specific assertion of the repo, add the `action` argument: * * - `bare` to validate that the working directory is inside a bare repo. * - `root` to validate that the working directory is the root of a repo. * - `tree` (default value when omitted) to simply validate that the working * directory is the descendent of a repo */ checkIsRepo(action?: types.CheckRepoActions, callback?: types.SimpleGitTaskCallback<boolean>): Response<boolean>; /** * Checkout a tag or revision, any number of additional arguments can be passed to the `git checkout` command * by supplying either a string or array of strings as the `what` parameter. */ checkout(what: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; checkout(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Checkout a remote branch. * * - branchName name of branch. * - startPoint (e.g origin/development). */ checkoutBranch(branchName: string, startPoint: string, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Internally uses pull and tags to get the list of tags then checks out the latest tag. */ checkoutLatestTag(branchName: string, startPoint: string, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Checkout a local branch */ checkoutLocalBranch(branchName: string, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Deletes unwanted content from the local repo - when supplying the first argument as * an array of `CleanOptions`, the array must include one of `CleanOptions.FORCE` or * `CleanOptions.DRY_RUN`. * * eg: * * ```typescript await git.clean(CleanOptions.FORCE); await git.clean(CleanOptions.DRY_RUN + CleanOptions.RECURSIVE); await git.clean(CleanOptions.FORCE, ['./path']); await git.clean(CleanOptions.IGNORED + CleanOptions.FORCE, {'./path': null}); * ``` */ clean(args: types.CleanOptions[], options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.CleanSummary>): Response<resp.CleanSummary>; clean(mode: types.CleanMode | string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.CleanSummary>): Response<resp.CleanSummary>; /** * Clears the queue of pending commands and returns the wrapper instance for chaining. */ clearQueue(): this; /** * Clone a repository into a new directory. * * - repoPath repository url to clone e.g. https://github.com/steveukx/git-js.git * - localPath local folder path to clone to. * - options supported by [git](https://git-scm.com/docs/git-clone). */ clone(repoPath: string, localPath: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; clone(repoPath: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Commits changes in the current working directory - when specific file paths are supplied, only changes on those * files will be committed. */ commit( message: string | string[], files?: string | string[], options?: types.Options, callback?: types.SimpleGitTaskCallback<resp.CommitSummary>): Response<resp.CommitSummary>; /** * Sets the path to a custom git binary, should either be `git` when there is an installation of git available on * the system path, or a fully qualified path to the executable. */ customBinary(command: string): this; /** * Sets the working directory of the subsequent commands. */ cwd<path extends string>(workingDirectory: path): Response<path>; /** * Delete one local branch. Supply the branchName as a string to return a * single `BranchDeletionSummary` instances. * * - branchName name of branch * - forceDelete (optional, defaults to false) set to true to forcibly delete unmerged branches */ deleteLocalBranch(branchName: string, forceDelete?: boolean, callback?: types.SimpleGitTaskCallback<resp.BranchSingleDeleteResult>): Response<resp.BranchSingleDeleteResult>; /** * Delete one or more local branches. Supply the branchName as a string to return a * single `BranchDeletionSummary` or as an array of branch names to return an array of * `BranchDeletionSummary` instances. * * - branchNames name of branch or array of branch names * - forceDelete (optional, defaults to false) set to true to forcibly delete unmerged branches */ deleteLocalBranches(branchNames: string[], forceDelete?: boolean, callback?: types.SimpleGitTaskCallback<resp.BranchSingleDeleteResult[]>): Response<resp.BranchSingleDeleteResult[]>; /** * Get the diff of the current repo compared to the last commit with a set of options supplied as a string. */ diff(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Gets a summary of the diff for files in the repo, uses the `git diff --stat` format to calculate changes. * * in order to get staged (only): `--cached` or `--staged`. */ diffSummary(options: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.DiffResult>): Response<resp.DiffResult>; /** * Sets an environment variable for the spawned child process, either supply both a name and value as strings or * a single object to entirely replace the current environment variables. * * @param {string|Object} name * @param {string} [value] */ env(name: string, value: string): this; env(env: object): this; /** * Updates the local working copy database with changes from the default remote repo and branch. */ fetch(remote: string, branch: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.FetchResult>): Response<resp.FetchResult>; fetch(remote: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.FetchResult>): Response<resp.FetchResult>; fetch(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.FetchResult>): Response<resp.FetchResult>; /** * Gets the currently available remotes, setting the optional verbose argument to true includes additional * detail on the remotes themselves. */ getRemotes(verbose?: false, callback?: types.SimpleGitTaskCallback<types.RemoteWithoutRefs[]>): Response<types.RemoteWithoutRefs[]>; getRemotes(verbose: true, callback?: types.SimpleGitTaskCallback<types.RemoteWithRefs[]>): Response<types.RemoteWithRefs[]>; /** * Initialize a git repo */ init(bare: boolean, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.InitResult>): Response<resp.InitResult>; init(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.InitResult>): Response<resp.InitResult>; /** * List remotes by running the `ls-remote` command with any number of arbitrary options * in either array of object form. */ listRemote(args?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Show commit logs from `HEAD` to the first commit. * If provided between `options.from` and `options.to` tags or branch. * * You can provide `options.file`, which is the path to a file in your repository. Then only this file will be considered. * * To use a custom splitter in the log format, set `options.splitter` to be the string the log should be split on. * * By default the following fields will be part of the result: * `hash`: full commit hash * `date`: author date, ISO 8601-like format * `message`: subject + ref names, like the --decorate option of git-log * `author_name`: author name * `author_email`: author mail * You can specify `options.format` to be an mapping from key to a format option like `%H` (for commit hash). * The fields specified in `options.format` will be the fields in the result. * * Options can also be supplied as a standard options object for adding custom properties supported by the git log command. * For any other set of options, supply options as an array of strings to be appended to the git log command. * * @returns Response<ListLogSummary> * * @see https://git-scm.com/docs/git-log */ log<T = types.DefaultLogFields>(options?: types.LogOptions<T>, callback?: types.SimpleGitTaskCallback<resp.ListLogSummary<T>>): Response<resp.ListLogSummary<T>>; /** * Runs a merge, `options` can be either an array of arguments * supported by the [`git merge`](https://git-scm.com/docs/git-merge) * or an options object. * * Conflicts during the merge result in an error response, * the response type whether it was an error or success will be a MergeSummary instance. * When successful, the MergeSummary has all detail from a the PullSummary * * @see https://github.com/steveukx/git-js/blob/master/src/responses/MergeSummary.js * @see https://github.com/steveukx/git-js/blob/master/src/responses/PullSummary.js */ merge(options: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.MergeResult>): Response<resp.MergeResult>; /** * Merges from one branch to another, equivalent to running `git merge ${from} $[to}`, the `options` argument can * either be an array of additional parameters to pass to the command or null / omitted to be ignored. * * - from branch to merge from. * - to branch to merge to. */ mergeFromTo(from: string, to: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Mirror a git repo * * Equivalent to `git.clone(repoPath, localPath, ['--mirror'])`, `clone` allows * for additional task options. */ mirror(repoPath: string, localPath: string, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Moves one or more files to a new destination. * * @see https://git-scm.com/docs/git-mv */ mv(from: string | string[], to: string, callback?: types.SimpleGitTaskCallback<resp.MoveSummary>): Response<resp.MoveSummary>; /** * Sets a handler function to be called whenever a new child process is created, the handler function will be called * with the name of the command being run and the stdout & stderr streams used by the ChildProcess. * * @example * require('simple-git') * .outputHandler(function (command, stdout, stderr) { * stdout.pipe(process.stdout); * }) * .checkout('https://github.com/user/repo.git'); * * @see https://nodejs.org/api/child_process.html#child_process_class_childprocess * @see https://nodejs.org/api/stream.html#stream_class_stream_readable */ outputHandler(handler: types.outputHandler | void): this; /** * Fetch from and integrate with another repository or a local branch. */ pull(remote?: string, branch?: string, options?: types.Options, callback?: types.SimpleGitTaskCallback<resp.PullResult>): Response<resp.PullResult>; /** * Update remote refs along with associated objects. */ push(remote?: string, branch?: string, options?: types.Options, callback?: types.SimpleGitTaskCallback<resp.PushResult>): Response<resp.PushResult>; /** * Pushes the current tag changes to a remote which can be either a URL or named remote. When not specified uses the * default configured remote spec. */ pushTags(remote?: string, callback?: types.SimpleGitTaskCallback<resp.PushResult>): Response<resp.PushResult>; /** * Executes any command against the git binary. * * @param {string[]|Object} commands */ raw(...commands: string[]): Response<string>; raw(commands: string | string[], callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Rebases the current working copy. Options can be supplied either as an array of string parameters * to be sent to the `git rebase` command, or a standard options object. */ rebase(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Call any `git remote` function with arguments passed as an array of strings. */ remote(options: string[], callback?: types.SimpleGitTaskCallback<void | string>): Response<void | string>; /** * Removes an entry from the list of remotes. * * - remoteName Name of the repository - eg "upstream" */ removeRemote(remoteName: string, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Reset a repo. Called without arguments this is a soft reset for the whole repo, * for explicitly setting the reset mode, supply the first argument as one of the * supported reset modes. * * Trailing options argument can be either a string array, or an extension of the * ResetOptions, use this argument for supplying arbitrary additional arguments, * such as restricting the pathspec. * * ```typescript // equivalent to each other simpleGit().reset(ResetMode.HARD, ['--', 'my-file.txt']); simpleGit().reset(['--hard', '--', 'my-file.txt']); simpleGit().reset(ResetMode.HARD, {'--': null, 'my-file.txt': null}); simpleGit().reset({'--hard': null, '--': null, 'my-file.txt': null}); ``` */ reset(mode: types.ResetMode, options?: types.TaskOptions<types.ResetOptions>, callback?: types.SimpleGitTaskCallback<string>): Response<string>; reset(options?: types.TaskOptions<types.ResetOptions>, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Revert one or more commits in the local working copy * * - commit The commit to revert. Can be any hash, offset (eg: `HEAD~2`) or range (eg: `master~5..master~2`) */ revert(commit: String, options?: types.Options, callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Passes the supplied options to `git rev-parse` and returns the string response. Options can be either a * string array or `Options` object of options compatible with the [rev-parse](https://git-scm.com/docs/git-rev-parse) * * Example uses of `rev-parse` include converting friendly commit references (ie: branch names) to SHA1 hashes * and retrieving meta details about the current repo (eg: the root directory, and whether it was created as * a bare repo). */ revparse(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Removes the named files from source control. */ rm(paths: string | string[], callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Removes the named files from source control but keeps them on disk rather than deleting them entirely. To * completely remove the files, use `rm`. */ rmKeepLocal(paths: string | string[], callback?: types.SimpleGitTaskCallback<void>): Response<void>; /** * Show various types of objects, for example the file at a certain commit */ show(options?: string[], callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * @deprecated * * From version 2.7.0, use of `silent` is deprecated in favour of using the `debug` library, this method will * be removed in version 3.x. * * Please see the [readme](https://github.com/steveukx/git-js/blob/master/readme.md#enable-logging) for more details. * * Disables/enables the use of the console for printing warnings and errors, by default messages are not shown in * a production environment. * * @param {boolean} silence */ silent(silence?: boolean): this; /** * Stash the local repo */ stash(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * List the stash(s) of the local repo */ stashList(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.ListLogSummary>): Response<resp.ListLogSummary>; /** * Show the working tree status. */ status(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.StatusResult>): Response<resp.StatusResult>; /** * Call any `git submodule` function with arguments passed as an array of strings. */ subModule(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Add a submodule */ submoduleAdd(repo: string, path: string, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Initialise submodules */ submoduleInit(moduleName: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; submoduleInit(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Update submodules */ submoduleUpdate(moduleName: string, options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; submoduleUpdate(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * List all tags. When using git 2.7.0 or above, include an options object with `"--sort": "property-name"` to * sort the tags by that property instead of using the default semantic versioning sort. * * Note, supplying this option when it is not supported by your Git version will cause the operation to fail. */ tag(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<string>): Response<string>; /** * Gets a list of tagged versions. */ tags(options?: types.TaskOptions, callback?: types.SimpleGitTaskCallback<resp.TagResult>): Response<resp.TagResult>; /** * Updates repository server info */ updateServerInfo(callback?: types.SimpleGitTaskCallback<string>): Response<string>; }