plugin-git-manager 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/client.d.ts +3 -0
  2. package/client.js +1 -0
  3. package/dist/client/100.e08d760e0b01997c.js +10 -0
  4. package/dist/client/components/CommitHistory.d.ts +2 -0
  5. package/dist/client/components/FileExplorer.d.ts +2 -0
  6. package/dist/client/components/GitManagerSettings.d.ts +2 -0
  7. package/dist/client/components/GitOperations.d.ts +2 -0
  8. package/dist/client/components/RepositoryConfig.d.ts +2 -0
  9. package/dist/client/context/GitManagerContext.d.ts +24 -0
  10. package/dist/client/index.d.ts +5 -0
  11. package/dist/client/index.js +10 -0
  12. package/dist/client/locale.d.ts +2 -0
  13. package/dist/externalVersion.js +18 -0
  14. package/dist/index.d.ts +2 -0
  15. package/dist/index.js +48 -0
  16. package/dist/locale/en-US.json +45 -0
  17. package/dist/locale/vi-VN.json +45 -0
  18. package/dist/node_modules/simple-git/dist/cjs/index.js +7399 -0
  19. package/dist/node_modules/simple-git/dist/esm/index.js +4745 -0
  20. package/dist/node_modules/simple-git/dist/esm/package.json +3 -0
  21. package/dist/node_modules/simple-git/dist/src/lib/api.d.ts +13 -0
  22. package/dist/node_modules/simple-git/dist/src/lib/args/log-format.d.ts +9 -0
  23. package/dist/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts +15 -0
  24. package/dist/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts +30 -0
  25. package/dist/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts +7 -0
  26. package/dist/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts +32 -0
  27. package/dist/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts +12 -0
  28. package/dist/node_modules/simple-git/dist/src/lib/git-factory.d.ts +15 -0
  29. package/dist/node_modules/simple-git/dist/src/lib/git-logger.d.ts +21 -0
  30. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-branch-delete.d.ts +5 -0
  31. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-branch.d.ts +2 -0
  32. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-commit.d.ts +2 -0
  33. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-diff-summary.d.ts +3 -0
  34. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-fetch.d.ts +2 -0
  35. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-list-log-summary.d.ts +6 -0
  36. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-merge.d.ts +11 -0
  37. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-move.d.ts +2 -0
  38. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-pull.d.ts +6 -0
  39. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-push.d.ts +4 -0
  40. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-remote-messages.d.ts +5 -0
  41. package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-remote-objects.d.ts +3 -0
  42. package/dist/node_modules/simple-git/dist/src/lib/plugins/abort-plugin.d.ts +3 -0
  43. package/dist/node_modules/simple-git/dist/src/lib/plugins/block-unsafe-operations-plugin.d.ts +3 -0
  44. package/dist/node_modules/simple-git/dist/src/lib/plugins/command-config-prefixing-plugin.d.ts +2 -0
  45. package/dist/node_modules/simple-git/dist/src/lib/plugins/completion-detection.plugin.d.ts +3 -0
  46. package/dist/node_modules/simple-git/dist/src/lib/plugins/custom-binary.plugin.d.ts +3 -0
  47. package/dist/node_modules/simple-git/dist/src/lib/plugins/error-detection.plugin.d.ts +7 -0
  48. package/dist/node_modules/simple-git/dist/src/lib/plugins/index.d.ts +11 -0
  49. package/dist/node_modules/simple-git/dist/src/lib/plugins/plugin-store.d.ts +11 -0
  50. package/dist/node_modules/simple-git/dist/src/lib/plugins/progress-monitor-plugin.d.ts +3 -0
  51. package/dist/node_modules/simple-git/dist/src/lib/plugins/simple-git-plugin.d.ts +48 -0
  52. package/dist/node_modules/simple-git/dist/src/lib/plugins/spawn-options-plugin.d.ts +3 -0
  53. package/dist/node_modules/simple-git/dist/src/lib/plugins/suffix-paths.plugin.d.ts +2 -0
  54. package/dist/node_modules/simple-git/dist/src/lib/plugins/timout-plugin.d.ts +3 -0
  55. package/dist/node_modules/simple-git/dist/src/lib/responses/BranchDeleteSummary.d.ts +12 -0
  56. package/dist/node_modules/simple-git/dist/src/lib/responses/BranchSummary.d.ts +14 -0
  57. package/dist/node_modules/simple-git/dist/src/lib/responses/CheckIgnore.d.ts +4 -0
  58. package/dist/node_modules/simple-git/dist/src/lib/responses/CleanSummary.d.ts +9 -0
  59. package/dist/node_modules/simple-git/dist/src/lib/responses/ConfigList.d.ts +13 -0
  60. package/dist/node_modules/simple-git/dist/src/lib/responses/DiffSummary.d.ts +10 -0
  61. package/dist/node_modules/simple-git/dist/src/lib/responses/FileStatusSummary.d.ts +9 -0
  62. package/dist/node_modules/simple-git/dist/src/lib/responses/GetRemoteSummary.d.ts +11 -0
  63. package/dist/node_modules/simple-git/dist/src/lib/responses/InitSummary.d.ts +9 -0
  64. package/dist/node_modules/simple-git/dist/src/lib/responses/MergeSummary.d.ts +16 -0
  65. package/dist/node_modules/simple-git/dist/src/lib/responses/PullSummary.d.ts +25 -0
  66. package/dist/node_modules/simple-git/dist/src/lib/responses/StatusSummary.d.ts +19 -0
  67. package/dist/node_modules/simple-git/dist/src/lib/responses/TagList.d.ts +7 -0
  68. package/dist/node_modules/simple-git/dist/src/lib/runners/git-executor-chain.d.ts +25 -0
  69. package/dist/node_modules/simple-git/dist/src/lib/runners/git-executor.d.ts +14 -0
  70. package/dist/node_modules/simple-git/dist/src/lib/runners/promise-wrapped.d.ts +2 -0
  71. package/dist/node_modules/simple-git/dist/src/lib/runners/scheduler.d.ts +11 -0
  72. package/dist/node_modules/simple-git/dist/src/lib/runners/tasks-pending-queue.d.ts +23 -0
  73. package/dist/node_modules/simple-git/dist/src/lib/simple-git-api.d.ts +20 -0
  74. package/dist/node_modules/simple-git/dist/src/lib/task-callback.d.ts +2 -0
  75. package/dist/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts +3 -0
  76. package/dist/node_modules/simple-git/dist/src/lib/tasks/branch.d.ts +7 -0
  77. package/dist/node_modules/simple-git/dist/src/lib/tasks/change-working-directory.d.ts +2 -0
  78. package/dist/node_modules/simple-git/dist/src/lib/tasks/check-ignore.d.ts +2 -0
  79. package/dist/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts +9 -0
  80. package/dist/node_modules/simple-git/dist/src/lib/tasks/checkout.d.ts +2 -0
  81. package/dist/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts +25 -0
  82. package/dist/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts +9 -0
  83. package/dist/node_modules/simple-git/dist/src/lib/tasks/commit.d.ts +4 -0
  84. package/dist/node_modules/simple-git/dist/src/lib/tasks/config.d.ts +8 -0
  85. package/dist/node_modules/simple-git/dist/src/lib/tasks/count-objects.d.ts +12 -0
  86. package/dist/node_modules/simple-git/dist/src/lib/tasks/diff-name-status.d.ts +12 -0
  87. package/dist/node_modules/simple-git/dist/src/lib/tasks/diff.d.ts +5 -0
  88. package/dist/node_modules/simple-git/dist/src/lib/tasks/fetch.d.ts +4 -0
  89. package/dist/node_modules/simple-git/dist/src/lib/tasks/first-commit.d.ts +2 -0
  90. package/dist/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts +12 -0
  91. package/dist/node_modules/simple-git/dist/src/lib/tasks/hash-object.d.ts +5 -0
  92. package/dist/node_modules/simple-git/dist/src/lib/tasks/init.d.ts +3 -0
  93. package/dist/node_modules/simple-git/dist/src/lib/tasks/log.d.ts +32 -0
  94. package/dist/node_modules/simple-git/dist/src/lib/tasks/merge.d.ts +4 -0
  95. package/dist/node_modules/simple-git/dist/src/lib/tasks/move.d.ts +3 -0
  96. package/dist/node_modules/simple-git/dist/src/lib/tasks/pull.d.ts +3 -0
  97. package/dist/node_modules/simple-git/dist/src/lib/tasks/push.d.ts +9 -0
  98. package/dist/node_modules/simple-git/dist/src/lib/tasks/remote.d.ts +8 -0
  99. package/dist/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts +11 -0
  100. package/dist/node_modules/simple-git/dist/src/lib/tasks/show.d.ts +2 -0
  101. package/dist/node_modules/simple-git/dist/src/lib/tasks/stash-list.d.ts +4 -0
  102. package/dist/node_modules/simple-git/dist/src/lib/tasks/status.d.ts +3 -0
  103. package/dist/node_modules/simple-git/dist/src/lib/tasks/sub-module.d.ts +5 -0
  104. package/dist/node_modules/simple-git/dist/src/lib/tasks/tag.d.ts +18 -0
  105. package/dist/node_modules/simple-git/dist/src/lib/tasks/task.d.ts +14 -0
  106. package/dist/node_modules/simple-git/dist/src/lib/tasks/version.d.ts +9 -0
  107. package/dist/node_modules/simple-git/dist/src/lib/types/handlers.d.ts +21 -0
  108. package/dist/node_modules/simple-git/dist/src/lib/types/index.d.ts +136 -0
  109. package/dist/node_modules/simple-git/dist/src/lib/types/tasks.d.ts +19 -0
  110. package/dist/node_modules/simple-git/dist/src/lib/utils/argument-filters.d.ts +14 -0
  111. package/dist/node_modules/simple-git/dist/src/lib/utils/exit-codes.d.ts +10 -0
  112. package/dist/node_modules/simple-git/dist/src/lib/utils/git-output-streams.d.ts +7 -0
  113. package/dist/node_modules/simple-git/dist/src/lib/utils/index.d.ts +8 -0
  114. package/dist/node_modules/simple-git/dist/src/lib/utils/line-parser.d.ts +15 -0
  115. package/dist/node_modules/simple-git/dist/src/lib/utils/simple-git-options.d.ts +2 -0
  116. package/dist/node_modules/simple-git/dist/src/lib/utils/task-options.d.ts +13 -0
  117. package/dist/node_modules/simple-git/dist/src/lib/utils/task-parser.d.ts +5 -0
  118. package/dist/node_modules/simple-git/dist/src/lib/utils/util.d.ts +47 -0
  119. package/dist/node_modules/simple-git/dist/typings/errors.d.ts +5 -0
  120. package/dist/node_modules/simple-git/dist/typings/index.d.ts +14 -0
  121. package/dist/node_modules/simple-git/dist/typings/response.d.ts +556 -0
  122. package/dist/node_modules/simple-git/dist/typings/simple-git.d.ts +1033 -0
  123. package/dist/node_modules/simple-git/dist/typings/types.d.ts +22 -0
  124. package/dist/node_modules/simple-git/node_modules/debug/package.json +64 -0
  125. package/dist/node_modules/simple-git/node_modules/debug/src/browser.js +272 -0
  126. package/dist/node_modules/simple-git/node_modules/debug/src/common.js +292 -0
  127. package/dist/node_modules/simple-git/node_modules/debug/src/index.js +10 -0
  128. package/dist/node_modules/simple-git/node_modules/debug/src/node.js +263 -0
  129. package/dist/node_modules/simple-git/package.json +1 -0
  130. package/dist/node_modules/simple-git/promise.js +17 -0
  131. package/dist/server/actions/git-actions.d.ts +13 -0
  132. package/dist/server/actions/git-actions.js +354 -0
  133. package/dist/server/collections/gitRepositories.d.ts +2 -0
  134. package/dist/server/collections/gitRepositories.js +75 -0
  135. package/dist/server/index.d.ts +2 -0
  136. package/dist/server/index.js +48 -0
  137. package/dist/server/plugin.d.ts +6 -0
  138. package/dist/server/plugin.js +120 -0
  139. package/package.json +32 -0
  140. package/server.d.ts +2 -0
  141. package/server.js +1 -0
  142. package/src/client/components/CommitHistory.tsx +326 -0
  143. package/src/client/components/FileExplorer.tsx +329 -0
  144. package/src/client/components/GitManagerSettings.tsx +123 -0
  145. package/src/client/components/GitOperations.tsx +195 -0
  146. package/src/client/components/RepositoryConfig.tsx +188 -0
  147. package/src/client/context/GitManagerContext.tsx +84 -0
  148. package/src/client/index.tsx +19 -0
  149. package/src/client/locale.ts +9 -0
  150. package/src/index.ts +2 -0
  151. package/src/locale/en-US.json +45 -0
  152. package/src/locale/vi-VN.json +45 -0
  153. package/src/server/actions/git-actions.ts +346 -0
  154. package/src/server/collections/gitRepositories.ts +45 -0
  155. package/src/server/index.ts +2 -0
  156. package/src/server/plugin.ts +81 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
@@ -0,0 +1,13 @@
1
+ import { pathspec } from '@simple-git/args-pathspec';
2
+ import { GitConstructError } from './errors/git-construct-error';
3
+ import { GitError } from './errors/git-error';
4
+ import { GitPluginError } from './errors/git-plugin-error';
5
+ import { GitResponseError } from './errors/git-response-error';
6
+ import { TaskConfigurationError } from './errors/task-configuration-error';
7
+ import { CheckRepoActions } from './tasks/check-is-repo';
8
+ import { CleanOptions } from './tasks/clean';
9
+ import { GitConfigScope } from './tasks/config';
10
+ import { DiffNameStatus } from './tasks/diff-name-status';
11
+ import { grepQueryBuilder } from './tasks/grep';
12
+ import { ResetMode } from './tasks/reset';
13
+ export { CheckRepoActions, CleanOptions, DiffNameStatus, GitConfigScope, GitConstructError, GitError, GitPluginError, GitResponseError, ResetMode, TaskConfigurationError, grepQueryBuilder, pathspec, };
@@ -0,0 +1,9 @@
1
+ export declare enum LogFormat {
2
+ NONE = "",
3
+ STAT = "--stat",
4
+ NUM_STAT = "--numstat",
5
+ NAME_ONLY = "--name-only",
6
+ NAME_STATUS = "--name-status"
7
+ }
8
+ export declare function logFormatFromCommand(customArgs: string[]): LogFormat;
9
+ export declare function isLogFormat(customArg: string | unknown): boolean;
@@ -0,0 +1,15 @@
1
+ import { GitError } from './git-error';
2
+ import { SimpleGitOptions } from '../types';
3
+ /**
4
+ * The `GitConstructError` is thrown when an error occurs in the constructor
5
+ * of the `simple-git` instance itself. Most commonly as a result of using
6
+ * a `baseDir` option that points to a folder that either does not exist,
7
+ * or cannot be read by the user the node script is running as.
8
+ *
9
+ * Check the `.message` property for more detail including the properties
10
+ * passed to the constructor.
11
+ */
12
+ export declare class GitConstructError extends GitError {
13
+ readonly config: SimpleGitOptions;
14
+ constructor(config: SimpleGitOptions, message: string);
15
+ }
@@ -0,0 +1,30 @@
1
+ import type { SimpleGitTask } from '../types';
2
+ /**
3
+ * The `GitError` is thrown when the underlying `git` process throws a
4
+ * fatal exception (eg an `ENOENT` exception when attempting to use a
5
+ * non-writable directory as the root for your repo), and acts as the
6
+ * base class for more specific errors thrown by the parsing of the
7
+ * git response or errors in the configuration of the task about to
8
+ * be run.
9
+ *
10
+ * When an exception is thrown, pending tasks in the same instance will
11
+ * not be executed. The recommended way to run a series of tasks that
12
+ * can independently fail without needing to prevent future tasks from
13
+ * running is to catch them individually:
14
+ *
15
+ * ```typescript
16
+ import { gitP, SimpleGit, GitError, PullResult } from 'simple-git';
17
+
18
+ function catchTask (e: GitError) {
19
+ return e.
20
+ }
21
+
22
+ const git = gitP(repoWorkingDir);
23
+ const pulled: PullResult | GitError = await git.pull().catch(catchTask);
24
+ const pushed: string | GitError = await git.pushTags().catch(catchTask);
25
+ ```
26
+ */
27
+ export declare class GitError extends Error {
28
+ task?: SimpleGitTask<any> | undefined;
29
+ constructor(task?: SimpleGitTask<any> | undefined, message?: string);
30
+ }
@@ -0,0 +1,7 @@
1
+ import { SimpleGitOptions, SimpleGitTask } from '../types';
2
+ import { GitError } from './git-error';
3
+ export declare class GitPluginError extends GitError {
4
+ task?: SimpleGitTask<any> | undefined;
5
+ readonly plugin?: keyof SimpleGitOptions | undefined;
6
+ constructor(task?: SimpleGitTask<any> | undefined, plugin?: keyof SimpleGitOptions | undefined, message?: string);
7
+ }
@@ -0,0 +1,32 @@
1
+ import { GitError } from './git-error';
2
+ /**
3
+ * The `GitResponseError` is the wrapper for a parsed response that is treated as
4
+ * a fatal error, for example attempting a `merge` can leave the repo in a corrupted
5
+ * state when there are conflicts so the task will reject rather than resolve.
6
+ *
7
+ * For example, catching the merge conflict exception:
8
+ *
9
+ * ```typescript
10
+ import { gitP, SimpleGit, GitResponseError, MergeSummary } from 'simple-git';
11
+
12
+ const git = gitP(repoRoot);
13
+ const mergeOptions: string[] = ['--no-ff', 'other-branch'];
14
+ const mergeSummary: MergeSummary = await git.merge(mergeOptions)
15
+ .catch((e: GitResponseError<MergeSummary>) => e.git);
16
+
17
+ if (mergeSummary.failed) {
18
+ // deal with the error
19
+ }
20
+ ```
21
+ */
22
+ export declare class GitResponseError<T = any> extends GitError {
23
+ /**
24
+ * `.git` access the parsed response that is treated as being an error
25
+ */
26
+ readonly git: T;
27
+ constructor(
28
+ /**
29
+ * `.git` access the parsed response that is treated as being an error
30
+ */
31
+ git: T, message?: string);
32
+ }
@@ -0,0 +1,12 @@
1
+ import { GitError } from './git-error';
2
+ /**
3
+ * The `TaskConfigurationError` is thrown when a command was incorrectly
4
+ * configured. An error of this kind means that no attempt was made to
5
+ * run your command through the underlying `git` binary.
6
+ *
7
+ * Check the `.message` property for more detail on why your configuration
8
+ * resulted in an error.
9
+ */
10
+ export declare class TaskConfigurationError extends GitError {
11
+ constructor(message?: string);
12
+ }
@@ -0,0 +1,15 @@
1
+ import { SimpleGitFactory } from '../../typings';
2
+ import * as api from './api';
3
+ import { SimpleGitOptions } from './types';
4
+ /**
5
+ * Adds the necessary properties to the supplied object to enable it for use as
6
+ * the default export of a module.
7
+ *
8
+ * Eg: `module.exports = esModuleFactory({ something () {} })`
9
+ */
10
+ export declare function esModuleFactory<T>(defaultExport: T): T & {
11
+ __esModule: true;
12
+ default: T;
13
+ };
14
+ export declare function gitExportFactory(factory: SimpleGitFactory): SimpleGitFactory & typeof api;
15
+ export declare function gitInstanceFactory(baseDir?: string | Partial<SimpleGitOptions>, options?: Partial<SimpleGitOptions>): any;
@@ -0,0 +1,21 @@
1
+ import { Debugger } from 'debug';
2
+ type OutputLoggingHandler = (message: string, ...args: any[]) => void;
3
+ export interface OutputLogger extends OutputLoggingHandler {
4
+ readonly label: string;
5
+ info: OutputLoggingHandler;
6
+ step(nextStep?: string): OutputLogger;
7
+ sibling(name: string): OutputLogger;
8
+ }
9
+ export declare function createLogger(label: string, verbose?: string | Debugger, initialStep?: string, infoDebugger?: Debugger): OutputLogger;
10
+ /**
11
+ * The `GitLogger` is used by the main `SimpleGit` runner to handle logging
12
+ * any warnings or errors.
13
+ */
14
+ export declare class GitLogger {
15
+ private _out;
16
+ error: OutputLoggingHandler;
17
+ warn: OutputLoggingHandler;
18
+ constructor(_out?: Debugger);
19
+ silent(silence?: boolean): void;
20
+ }
21
+ export {};
@@ -0,0 +1,5 @@
1
+ import { BranchMultiDeleteResult } from '../../../typings';
2
+ import { TaskParser } from '../types';
3
+ import { ExitCodes } from '../utils';
4
+ export declare const parseBranchDeletions: TaskParser<string, BranchMultiDeleteResult>;
5
+ export declare function hasBranchDeletionError(data: string, processExitCode: ExitCodes): boolean;
@@ -0,0 +1,2 @@
1
+ import type { BranchSummary } from '../../../typings';
2
+ export declare function parseBranchSummary(stdOut: string, currentOnly?: boolean): BranchSummary;
@@ -0,0 +1,2 @@
1
+ import { CommitResult } from '../../../typings';
2
+ export declare function parseCommitResult(stdOut: string): CommitResult;
@@ -0,0 +1,3 @@
1
+ import { LogFormat } from '../args/log-format';
2
+ import { DiffSummary } from '../responses/DiffSummary';
3
+ export declare function getDiffParser(format?: LogFormat): (stdOut: string) => DiffSummary;
@@ -0,0 +1,2 @@
1
+ import { FetchResult } from '../../../typings';
2
+ export declare function parseFetchResult(stdOut: string, stdErr: string): FetchResult;
@@ -0,0 +1,6 @@
1
+ import { LogResult } from '../../../typings';
2
+ import { LogFormat } from '../args/log-format';
3
+ export declare const START_BOUNDARY = "\u00F2\u00F2\u00F2\u00F2\u00F2\u00F2 ";
4
+ export declare const COMMIT_BOUNDARY = " \u00F2\u00F2";
5
+ export declare const SPLITTER = " \u00F2 ";
6
+ export declare function createListLogSummaryParser<T = any>(splitter?: string, fields?: string[], logFormat?: LogFormat): (stdOut: string) => LogResult<T>;
@@ -0,0 +1,11 @@
1
+ import { MergeDetail, MergeResult } from '../../../typings';
2
+ import { TaskParser } from '../types';
3
+ /**
4
+ * Parse the complete response from `git.merge`
5
+ */
6
+ export declare const parseMergeResult: TaskParser<string, MergeResult>;
7
+ /**
8
+ * Parse the merge specific detail (ie: not the content also available in the pull detail) from `git.mnerge`
9
+ * @param stdOut
10
+ */
11
+ export declare const parseMergeDetail: TaskParser<string, MergeDetail>;
@@ -0,0 +1,2 @@
1
+ import { MoveResult } from '../../../typings';
2
+ export declare function parseMoveResult(stdOut: string): MoveResult;
@@ -0,0 +1,6 @@
1
+ import { PullDetail, PullResult } from '../../../typings';
2
+ import { PullFailedSummary } from '../responses/PullSummary';
3
+ import { TaskParser } from '../types';
4
+ export declare const parsePullDetail: TaskParser<string, PullDetail>;
5
+ export declare const parsePullResult: TaskParser<string, PullResult>;
6
+ export declare function parsePullErrorResult(stdOut: string, stdErr: string): "" | PullFailedSummary;
@@ -0,0 +1,4 @@
1
+ import { PushDetail, PushResult } from '../../../typings';
2
+ import { TaskParser } from '../types';
3
+ export declare const parsePushResult: TaskParser<string, PushResult>;
4
+ export declare const parsePushDetail: TaskParser<string, PushDetail>;
@@ -0,0 +1,5 @@
1
+ import { RemoteMessageResult, RemoteMessages } from '../../../typings';
2
+ export declare function parseRemoteMessages<T extends RemoteMessages = RemoteMessages>(_stdOut: string, stdErr: string): RemoteMessageResult;
3
+ export declare class RemoteMessageSummary implements RemoteMessages {
4
+ readonly all: string[];
5
+ }
@@ -0,0 +1,3 @@
1
+ import { RemoteMessageResult, RemoteMessages } from '../../../typings';
2
+ import { RemoteLineParser } from '../utils';
3
+ export declare const remoteMessagesObjectParsers: RemoteLineParser<RemoteMessageResult<RemoteMessages>>[];
@@ -0,0 +1,3 @@
1
+ import { SimpleGitOptions } from '../types';
2
+ import { SimpleGitPlugin } from './simple-git-plugin';
3
+ export declare function abortPlugin(signal: SimpleGitOptions['abort']): (SimpleGitPlugin<"spawn.before"> | SimpleGitPlugin<"spawn.after">)[] | undefined;
@@ -0,0 +1,3 @@
1
+ import type { SimpleGitPluginConfig } from '../types';
2
+ import type { SimpleGitPlugin } from './simple-git-plugin';
3
+ export declare function blockUnsafeOperationsPlugin(options?: SimpleGitPluginConfig['unsafe']): SimpleGitPlugin<'spawn.args'>;
@@ -0,0 +1,2 @@
1
+ import { SimpleGitPlugin } from './simple-git-plugin';
2
+ export declare function commandConfigPrefixingPlugin(configuration: string[]): SimpleGitPlugin<'spawn.args'>;
@@ -0,0 +1,3 @@
1
+ import { SimpleGitPluginConfig } from '../types';
2
+ import { SimpleGitPlugin } from './simple-git-plugin';
3
+ export declare function completionDetectionPlugin({ onClose, onExit, }?: SimpleGitPluginConfig['completion']): SimpleGitPlugin<'spawn.after'>;
@@ -0,0 +1,3 @@
1
+ import type { SimpleGitOptions } from '../types';
2
+ import { PluginStore } from './plugin-store';
3
+ export declare function customBinaryPlugin(plugins: PluginStore, input?: SimpleGitOptions['binary'], allowUnsafe?: boolean): void;
@@ -0,0 +1,7 @@
1
+ import { GitExecutorResult, SimpleGitPluginConfig } from '../types';
2
+ import { SimpleGitPlugin } from './simple-git-plugin';
3
+ type TaskResult = Omit<GitExecutorResult, 'rejection'>;
4
+ declare function isTaskError(result: TaskResult): boolean;
5
+ export declare function errorDetectionHandler(overwrite?: boolean, isError?: typeof isTaskError, errorMessage?: (result: TaskResult) => Buffer | Error): (error: Buffer | Error | undefined, result: TaskResult) => Error | Buffer<ArrayBufferLike> | undefined;
6
+ export declare function errorDetectionPlugin(config: SimpleGitPluginConfig['errors']): SimpleGitPlugin<'task.error'>;
7
+ export {};
@@ -0,0 +1,11 @@
1
+ export * from './abort-plugin';
2
+ export { blockUnsafeOperationsPlugin } from './block-unsafe-operations-plugin';
3
+ export * from './command-config-prefixing-plugin';
4
+ export * from './completion-detection.plugin';
5
+ export * from './custom-binary.plugin';
6
+ export * from './error-detection.plugin';
7
+ export * from './plugin-store';
8
+ export * from './progress-monitor-plugin';
9
+ export * from './simple-git-plugin';
10
+ export * from './spawn-options-plugin';
11
+ export * from './timout-plugin';
@@ -0,0 +1,11 @@
1
+ import type { SimpleGitPlugin, SimpleGitPluginType, SimpleGitPluginTypes } from './simple-git-plugin';
2
+ import type { SimpleGitPluginConfig } from '../types';
3
+ export declare class PluginStore {
4
+ private plugins;
5
+ private events;
6
+ on<K extends keyof SimpleGitPluginConfig>(type: K, listener: (data: SimpleGitPluginConfig[K]) => void): void;
7
+ reconfigure<K extends keyof SimpleGitPluginConfig>(type: K, data: SimpleGitPluginConfig[K]): void;
8
+ append<T extends SimpleGitPluginType>(type: T, action: SimpleGitPlugin<T>['action']): () => boolean;
9
+ add<T extends SimpleGitPluginType>(plugin: void | SimpleGitPlugin<T> | SimpleGitPlugin<T>[]): () => void;
10
+ exec<T extends SimpleGitPluginType>(type: T, data: SimpleGitPluginTypes[T]['data'], context: SimpleGitPluginTypes[T]['context']): typeof data;
11
+ }
@@ -0,0 +1,3 @@
1
+ import { SimpleGitOptions } from '../types';
2
+ import { SimpleGitPlugin } from './simple-git-plugin';
3
+ export declare function progressMonitorPlugin(progress: Exclude<SimpleGitOptions['progress'], void>): (SimpleGitPlugin<"spawn.after"> | SimpleGitPlugin<"spawn.args">)[];
@@ -0,0 +1,48 @@
1
+ import { ChildProcess, SpawnOptions } from 'child_process';
2
+ import { GitExecutorResult } from '../types';
3
+ type SimpleGitTaskPluginContext = {
4
+ readonly method: string;
5
+ readonly commands: string[];
6
+ };
7
+ export interface SimpleGitPluginTypes {
8
+ 'spawn.args': {
9
+ data: string[];
10
+ context: SimpleGitTaskPluginContext & {
11
+ env: Record<string, string | undefined>;
12
+ };
13
+ };
14
+ 'spawn.binary': {
15
+ data: string;
16
+ context: SimpleGitTaskPluginContext & {};
17
+ };
18
+ 'spawn.options': {
19
+ data: Partial<SpawnOptions>;
20
+ context: SimpleGitTaskPluginContext & {};
21
+ };
22
+ 'spawn.before': {
23
+ data: void;
24
+ context: SimpleGitTaskPluginContext & {
25
+ kill(reason: Error): void;
26
+ };
27
+ };
28
+ 'spawn.after': {
29
+ data: void;
30
+ context: SimpleGitTaskPluginContext & {
31
+ spawned: ChildProcess;
32
+ close(exitCode: number, reason?: Error): void;
33
+ kill(reason: Error): void;
34
+ };
35
+ };
36
+ 'task.error': {
37
+ data: {
38
+ error?: Error;
39
+ };
40
+ context: SimpleGitTaskPluginContext & GitExecutorResult;
41
+ };
42
+ }
43
+ export type SimpleGitPluginType = keyof SimpleGitPluginTypes;
44
+ export interface SimpleGitPlugin<T extends SimpleGitPluginType> {
45
+ action(data: SimpleGitPluginTypes[T]['data'], context: SimpleGitPluginTypes[T]['context']): typeof data;
46
+ type: T;
47
+ }
48
+ export {};
@@ -0,0 +1,3 @@
1
+ import { SpawnOptions } from 'child_process';
2
+ import { SimpleGitPlugin } from './simple-git-plugin';
3
+ export declare function spawnOptionsPlugin(spawnOptions: Partial<SpawnOptions>): SimpleGitPlugin<'spawn.options'>;
@@ -0,0 +1,2 @@
1
+ import { SimpleGitPlugin } from './simple-git-plugin';
2
+ export declare function suffixPathsPlugin(): SimpleGitPlugin<'spawn.args'>;
@@ -0,0 +1,3 @@
1
+ import type { SimpleGitPlugin } from './simple-git-plugin';
2
+ import type { SimpleGitOptions } from '../types';
3
+ export declare function timeoutPlugin({ block, stdErr, stdOut, }: Exclude<SimpleGitOptions['timeout'], undefined>): SimpleGitPlugin<'spawn.after'> | void;
@@ -0,0 +1,12 @@
1
+ import { BranchMultiDeleteResult, BranchSingleDeleteFailure, BranchSingleDeleteResult, BranchSingleDeleteSuccess } from '../../../typings';
2
+ export declare class BranchDeletionBatch implements BranchMultiDeleteResult {
3
+ all: BranchSingleDeleteResult[];
4
+ branches: {
5
+ [branchName: string]: BranchSingleDeleteResult;
6
+ };
7
+ errors: BranchSingleDeleteResult[];
8
+ get success(): boolean;
9
+ }
10
+ export declare function branchDeletionSuccess(branch: string, hash: string): BranchSingleDeleteSuccess;
11
+ export declare function branchDeletionFailure(branch: string): BranchSingleDeleteFailure;
12
+ export declare function isSingleBranchDeleteFailure(test: BranchSingleDeleteResult): test is BranchSingleDeleteSuccess;
@@ -0,0 +1,14 @@
1
+ import type { BranchSummary, BranchSummaryBranch } from '../../../typings';
2
+ export declare enum BranchStatusIdentifier {
3
+ CURRENT = "*",
4
+ LINKED = "+"
5
+ }
6
+ export declare class BranchSummaryResult implements BranchSummary {
7
+ all: string[];
8
+ branches: {
9
+ [p: string]: BranchSummaryBranch;
10
+ };
11
+ current: string;
12
+ detached: boolean;
13
+ push(status: BranchStatusIdentifier | unknown, detached: boolean, name: string, commit: string, label: string): void;
14
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Parser for the `check-ignore` command - returns each file as a string array
3
+ */
4
+ export declare const parseCheckIgnore: (text: string) => string[];
@@ -0,0 +1,9 @@
1
+ import { CleanSummary } from '../../../typings';
2
+ export declare class CleanResponse implements CleanSummary {
3
+ readonly dryRun: boolean;
4
+ paths: string[];
5
+ files: string[];
6
+ folders: string[];
7
+ constructor(dryRun: boolean);
8
+ }
9
+ export declare function cleanSummaryParser(dryRun: boolean, text: string): CleanSummary;
@@ -0,0 +1,13 @@
1
+ import { ConfigGetResult, ConfigListSummary, ConfigValues } from '../../../typings';
2
+ export declare class ConfigList implements ConfigListSummary {
3
+ files: string[];
4
+ values: {
5
+ [fileName: string]: ConfigValues;
6
+ };
7
+ private _all;
8
+ get all(): ConfigValues;
9
+ addFile(file: string): ConfigValues;
10
+ addValue(file: string, key: string, value: string): void;
11
+ }
12
+ export declare function configListParser(text: string): ConfigList;
13
+ export declare function configGetParser(text: string, key: string): ConfigGetResult;
@@ -0,0 +1,10 @@
1
+ import { DiffResult, DiffResultBinaryFile, DiffResultTextFile } from '../../../typings';
2
+ /***
3
+ * The DiffSummary is returned as a response to getting `git().status()`
4
+ */
5
+ export declare class DiffSummary implements DiffResult {
6
+ changed: number;
7
+ deletions: number;
8
+ insertions: number;
9
+ files: Array<DiffResultTextFile | DiffResultBinaryFile>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { FileStatusResult } from '../../../typings';
2
+ export declare const fromPathRegex: RegExp;
3
+ export declare class FileStatusSummary implements FileStatusResult {
4
+ path: string;
5
+ index: string;
6
+ working_dir: string;
7
+ readonly from: string | undefined;
8
+ constructor(path: string, index: string, working_dir: string);
9
+ }
@@ -0,0 +1,11 @@
1
+ export interface RemoteWithoutRefs {
2
+ name: string;
3
+ }
4
+ export interface RemoteWithRefs extends RemoteWithoutRefs {
5
+ refs: {
6
+ fetch: string;
7
+ push: string;
8
+ };
9
+ }
10
+ export declare function parseGetRemotes(text: string): RemoteWithoutRefs[];
11
+ export declare function parseGetRemotesVerbose(text: string): RemoteWithRefs[];
@@ -0,0 +1,9 @@
1
+ import { InitResult } from '../../../typings';
2
+ export declare class InitSummary implements InitResult {
3
+ readonly bare: boolean;
4
+ readonly path: string;
5
+ readonly existing: boolean;
6
+ readonly gitDir: string;
7
+ constructor(bare: boolean, path: string, existing: boolean, gitDir: string);
8
+ }
9
+ export declare function parseInit(bare: boolean, path: string, text: string): InitSummary;
@@ -0,0 +1,16 @@
1
+ import { MergeConflict, MergeConflictDeletion, MergeDetail, MergeResultStatus } from '../../../typings';
2
+ export declare class MergeSummaryConflict implements MergeConflict {
3
+ readonly reason: string;
4
+ readonly file: string | null;
5
+ readonly meta?: MergeConflictDeletion | undefined;
6
+ constructor(reason: string, file?: string | null, meta?: MergeConflictDeletion | undefined);
7
+ toString(): string;
8
+ }
9
+ export declare class MergeSummaryDetail implements MergeDetail {
10
+ conflicts: MergeConflict[];
11
+ merges: string[];
12
+ result: MergeResultStatus;
13
+ get failed(): boolean;
14
+ get reason(): string;
15
+ toString(): string;
16
+ }
@@ -0,0 +1,25 @@
1
+ import { PullDetailFileChanges, PullDetailSummary, PullFailedResult, PullResult } from '../../../typings';
2
+ export declare class PullSummary implements PullResult {
3
+ remoteMessages: {
4
+ all: never[];
5
+ };
6
+ created: never[];
7
+ deleted: string[];
8
+ files: string[];
9
+ deletions: PullDetailFileChanges;
10
+ insertions: PullDetailFileChanges;
11
+ summary: PullDetailSummary;
12
+ }
13
+ export declare class PullFailedSummary implements PullFailedResult {
14
+ remote: string;
15
+ hash: {
16
+ local: string;
17
+ remote: string;
18
+ };
19
+ branch: {
20
+ local: string;
21
+ remote: string;
22
+ };
23
+ message: string;
24
+ toString(): string;
25
+ }
@@ -0,0 +1,19 @@
1
+ import { StatusResult } from '../../../typings';
2
+ export declare class StatusSummary implements StatusResult {
3
+ not_added: never[];
4
+ conflicted: never[];
5
+ created: never[];
6
+ deleted: never[];
7
+ ignored: undefined;
8
+ modified: never[];
9
+ renamed: never[];
10
+ files: never[];
11
+ staged: never[];
12
+ ahead: number;
13
+ behind: number;
14
+ current: null;
15
+ tracking: null;
16
+ detached: boolean;
17
+ isClean: () => boolean;
18
+ }
19
+ export declare const parseStatusSummary: (text: string) => StatusResult;
@@ -0,0 +1,7 @@
1
+ import { TagResult } from '../../../typings';
2
+ export declare class TagList implements TagResult {
3
+ readonly all: string[];
4
+ readonly latest: string | undefined;
5
+ constructor(all: string[], latest: string | undefined);
6
+ }
7
+ export declare const parseTagList: (data: string, customSort?: boolean) => TagList;
@@ -0,0 +1,25 @@
1
+ import { PluginStore } from '../plugins';
2
+ import { outputHandler, SimpleGitExecutor, SimpleGitTask } from '../types';
3
+ import { Scheduler } from './scheduler';
4
+ export declare class GitExecutorChain implements SimpleGitExecutor {
5
+ private _executor;
6
+ private _scheduler;
7
+ private _plugins;
8
+ private _chain;
9
+ private _queue;
10
+ private _cwd;
11
+ get cwd(): string;
12
+ set cwd(cwd: string);
13
+ get env(): import("../types").GitExecutorEnv;
14
+ get outputHandler(): outputHandler | undefined;
15
+ constructor(_executor: SimpleGitExecutor, _scheduler: Scheduler, _plugins: PluginStore);
16
+ chain(): this;
17
+ push<R>(task: SimpleGitTask<R>): Promise<R>;
18
+ private attemptTask;
19
+ private onFatalException;
20
+ private attemptRemoteTask;
21
+ private attemptEmptyTask;
22
+ private handleTaskData;
23
+ private gitResponse;
24
+ private _beforeSpawn;
25
+ }
@@ -0,0 +1,14 @@
1
+ import type { PluginStore } from '../plugins';
2
+ import type { GitExecutorEnv, outputHandler, SimpleGitExecutor, SimpleGitTask } from '../types';
3
+ import { Scheduler } from './scheduler';
4
+ export declare class GitExecutor implements SimpleGitExecutor {
5
+ cwd: string;
6
+ private _scheduler;
7
+ private _plugins;
8
+ private _chain;
9
+ env: GitExecutorEnv;
10
+ outputHandler?: outputHandler;
11
+ constructor(cwd: string, _scheduler: Scheduler, _plugins: PluginStore);
12
+ chain(): SimpleGitExecutor;
13
+ push<R>(task: SimpleGitTask<R>): Promise<R>;
14
+ }
@@ -0,0 +1,2 @@
1
+ import { SimpleGit, SimpleGitOptions } from '../../../typings';
2
+ export declare function gitP(...args: [] | [string] | [Partial<SimpleGitOptions>] | [string, Partial<SimpleGitOptions>]): SimpleGit;
@@ -0,0 +1,11 @@
1
+ type ScheduleCompleteCallback = () => void;
2
+ export declare class Scheduler {
3
+ private concurrency;
4
+ private logger;
5
+ private pending;
6
+ private running;
7
+ constructor(concurrency?: number);
8
+ private schedule;
9
+ next(): Promise<ScheduleCompleteCallback>;
10
+ }
11
+ export {};