@unifan/pi-commit-zh 1.0.11 → 1.0.12
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/index.ts +16 -3
- package/package.json +1 -1
- package/src/git.ts +40 -2
package/index.ts
CHANGED
|
@@ -131,7 +131,16 @@ export default function (pi: ExtensionAPI) {
|
|
|
131
131
|
display: true,
|
|
132
132
|
});
|
|
133
133
|
} else {
|
|
134
|
-
|
|
134
|
+
if (pushRes.hasConflict) {
|
|
135
|
+
notify("⚠️ 远端拉取变基产生代码冲突!请对比修改和上下文解决冲突,严禁直接使用 ours/theirs。", "warning");
|
|
136
|
+
} else {
|
|
137
|
+
notify(`⚠️ 推送失败: ${pushRes.output}`, "error");
|
|
138
|
+
}
|
|
139
|
+
pi.sendMessage({
|
|
140
|
+
customType: "pi-commit-result",
|
|
141
|
+
content: `### ⚠️ 推送到远端未完成\n\n${pushRes.output}`,
|
|
142
|
+
display: true,
|
|
143
|
+
});
|
|
135
144
|
}
|
|
136
145
|
return;
|
|
137
146
|
}
|
|
@@ -172,8 +181,12 @@ export default function (pi: ExtensionAPI) {
|
|
|
172
181
|
notify(successMsg, "info");
|
|
173
182
|
pushText = `\n\n${successMsg}`;
|
|
174
183
|
} else {
|
|
175
|
-
|
|
176
|
-
|
|
184
|
+
if (pushRes.hasConflict) {
|
|
185
|
+
notify("⚠️ 远端拉取变基产生代码冲突!请对比修改和上下文解决冲突,严禁直接使用 ours/theirs。", "warning");
|
|
186
|
+
} else {
|
|
187
|
+
notify(`⚠️ 推送失败: ${pushRes.output}`, "error");
|
|
188
|
+
}
|
|
189
|
+
pushText = `\n\n${pushRes.output}`;
|
|
177
190
|
}
|
|
178
191
|
}
|
|
179
192
|
|
package/package.json
CHANGED
package/src/git.ts
CHANGED
|
@@ -79,7 +79,7 @@ export async function commitWithMsg(cwd: string, message: string): Promise<{ ok:
|
|
|
79
79
|
export async function pushCurrentBranch(
|
|
80
80
|
cwd: string,
|
|
81
81
|
onLog?: (msg: string) => void,
|
|
82
|
-
): Promise<{ ok: boolean; output: string; autoRebased?: boolean }> {
|
|
82
|
+
): Promise<{ ok: boolean; output: string; autoRebased?: boolean; hasConflict?: boolean; conflictFiles?: string[] }> {
|
|
83
83
|
let initialPush = await runGit(cwd, ["push"]);
|
|
84
84
|
if (initialPush.ok) {
|
|
85
85
|
return { ok: true, output: initialPush.stdout || "推送成功" };
|
|
@@ -111,9 +111,47 @@ export async function pushCurrentBranch(
|
|
|
111
111
|
const pullRebase = await runGit(cwd, ["pull", "--rebase"]);
|
|
112
112
|
if (!pullRebase.ok) {
|
|
113
113
|
const rebaseErr = `${pullRebase.stderr} ${pullRebase.stdout}`;
|
|
114
|
+
|
|
115
|
+
// 检索冲突文件清单
|
|
116
|
+
const conflictDiff = await runGit(cwd, ["diff", "--name-only", "--diff-filter=U"]);
|
|
117
|
+
let conflictFiles = conflictDiff.ok && conflictDiff.stdout.trim()
|
|
118
|
+
? conflictDiff.stdout.trim().split("\n").map((f) => f.trim()).filter(Boolean)
|
|
119
|
+
: [];
|
|
120
|
+
|
|
121
|
+
if (conflictFiles.length === 0) {
|
|
122
|
+
const statusRes = await runGit(cwd, ["status", "--porcelain"]);
|
|
123
|
+
if (statusRes.ok && statusRes.stdout.trim()) {
|
|
124
|
+
conflictFiles = statusRes.stdout
|
|
125
|
+
.split("\n")
|
|
126
|
+
.filter((l) => /^(UU|AA|UD|DU|DD|AU|UA)\s+/.test(l.trim()))
|
|
127
|
+
.map((l) => l.trim().slice(3).trim());
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const filesListText = conflictFiles.length > 0
|
|
132
|
+
? `\n\n📌 **发生冲突的文件 (${conflictFiles.length} 个)**:\n${conflictFiles.map((f) => `- \`${f}\``).join("\n")}`
|
|
133
|
+
: "";
|
|
134
|
+
|
|
135
|
+
const conflictOutput = `⚠️ **远端有新提交,拉取变基 (git pull --rebase) 时与本地提交产生代码冲突!**${filesListText}
|
|
136
|
+
|
|
137
|
+
🚨 **【代码冲突解决核心铁律(重中之重)】**:
|
|
138
|
+
1. **严禁直接无脑使用 \`--theirs\` 或 \`--ours\`**:绝对不要盲目使用其中一方覆盖另一方,否则极易覆盖远端同事的代码或丢失本地修复!
|
|
139
|
+
2. **必须根据对比修改和上下文解决冲突**:
|
|
140
|
+
- 逐个打开冲突文件,对照 \`<<<<<<< HEAD\`(远端基线)与 \`>>>>>>>\`(本地提交)的具体改动;
|
|
141
|
+
- 结合周围类、函数、接口调用与业务上下文,理解两边的意图后逐行融合成正确的最终代码。
|
|
142
|
+
|
|
143
|
+
🛠️ **解决冲突操作步骤**:
|
|
144
|
+
1. 对比并手工/智能修改上述冲突文件,消除所有冲突标记;
|
|
145
|
+
2. 执行 \`git add <已解决文件>\` 标记冲突已解决;
|
|
146
|
+
3. 执行 \`git rebase --continue\` 完成变基;
|
|
147
|
+
4. 变基成功后重新执行 \`/commit-push\` 推送至远端;
|
|
148
|
+
(若需放弃本次变基恢复原状,可执行 \`git rebase --abort\`)。\n\n底层详细输出:\n${rebaseErr}`;
|
|
149
|
+
|
|
114
150
|
return {
|
|
115
151
|
ok: false,
|
|
116
|
-
output:
|
|
152
|
+
output: conflictOutput,
|
|
153
|
+
hasConflict: true,
|
|
154
|
+
conflictFiles,
|
|
117
155
|
};
|
|
118
156
|
}
|
|
119
157
|
|