@cyber-tools/cyber-git 4.0.0
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.
- package/README.md +15 -0
- package/dist/index.js +6347 -0
- package/frameworks/build.js +16 -0
- package/frameworks/development.js +20 -0
- package/package.json +47 -0
- package/src/actions/FastCommitAction.ts +51 -0
- package/src/actions/LaunchRemoteRepo.ts +29 -0
- package/src/actions/RunGitScripts.ts +46 -0
- package/src/commons/ApplicationConfigManager.ts +60 -0
- package/src/commons/IOCContainer.ts +4 -0
- package/src/index.ts +46 -0
- package/src/services/CommentPresetServices.ts +54 -0
- package/src/services/ConfirmAndPushRemote.ts +42 -0
- package/src/services/CreateIgnoreFile.ts +45 -0
- package/src/services/FirstCommit.ts +48 -0
- package/src/services/ProjectSelfInspection.ts +48 -0
- package/src/services/ResetCommitWithIgnore.ts +39 -0
- package/src/services/UpdateRemoteURL.ts +45 -0
- package/src/utils/CommandLineToast.ts +31 -0
- package/src/utils/CommentMessageGenerater.ts +73 -0
- package/src/utils/PopConfirmUtils.ts +23 -0
- package/src/utils/ProjectJudgment.ts +83 -0
- package/src/utils/SelectCommentType.ts +34 -0
- package/src/utils/SelectScriptType.ts +38 -0
- package/tsconfig.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<h2 align="center">Introduction</h2>
|
|
2
|
+
<div align="center"></div>
|
|
3
|
+
<h2 align="center">Install</h2>
|
|
4
|
+
|
|
5
|
+
<div align="center">
|
|
6
|
+
npm i @cyber-tools/cyber-git -g
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<h2 align="center">Usage</h2>
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
提交代码并生成提交注释:
|
|
13
|
+
```bash
|
|
14
|
+
cyber-git commit
|
|
15
|
+
```
|