支持在git推送时选择远程源

This commit is contained in:
xintaofei
2026-03-23 16:39:49 +08:00
parent bf388526d7
commit 017b598649
5 changed files with 217 additions and 38 deletions

View File

@@ -675,6 +675,12 @@ export interface GitPushResult {
upstream_set: boolean
}
export interface GitPushInfo {
branch: string
remotes: GitRemote[]
tracking_remote: string | null
}
export interface GitMergeResult {
merged_commits: number
conflict?: GitConflictInfo | null