We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 209247f commit 99fa0e4Copy full SHA for 99fa0e4
2 files changed
plugins/development/plugin-git/src/node/typings.ts
@@ -21,6 +21,10 @@ export interface RawCommit {
21
/** The co-authors of the commit */
22
coAuthors: CoAuthorInfo[]
23
24
+ /**
25
+ * Information about the submodule if the commit is related to a submodule
26
+ * update, otherwise null.
27
+ */
28
submodule: SubmoduleInfo | null
29
}
30
plugins/development/plugin-git/src/shared/index.ts
@@ -92,6 +92,11 @@ export interface SubmoduleInfo {
92
*/
93
provider?: KnownGitProvider | null
94
95
96
+ * Git URL pattern for the submodule
97
+ *
98
+ * 子模块的 Git URL 模式
99
100
pattern?: GitUrlPattern
101
102
0 commit comments