You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
"⚠ Found %d conflict(s) in %s:\n\n```\n%s\n```\n\nResolve conflicts manually, then use 'stage' followed by 'cherry_pick_continue' or 'merge_continue'.",
956
+
#conflicts,
957
+
file_path,
958
+
conflict_output
959
+
)
960
+
961
+
localllm_msg=string.format(
962
+
"<gitConflictShow>success: %d conflict(s) in %s:\n%s</gitConflictShow>",
963
+
#conflicts,
964
+
file_path,
965
+
conflict_output
966
+
)
967
+
968
+
returntrue, conflict_output, user_msg, llm_msg
969
+
end
970
+
859
971
--- Generate release notes between two tags
860
972
---@paramfrom_tagstring|nil Starting tag (if not provided, uses second latest tag)
861
973
---@paramto_tagstring|nil Ending tag (if not provided, uses latest tag)
| `conflict_status` | List files with conflicts | - |
146
+
| `conflict_show` | Show conflict markers in file | file_path (required) |
143
147
| `gitignore_get` | Get .gitignore content | - |
144
148
| `gitignore_check` | Check if file is ignored | gitignore_file (required) |
145
149
| `help` | Show help information | - |
@@ -164,6 +168,8 @@ local VALID_OPERATIONS = {
164
168
"search_commits",
165
169
"tags",
166
170
"generate_release_notes",
171
+
"conflict_status",
172
+
"conflict_show",
167
173
"help",
168
174
"gitignore_get",
169
175
"gitignore_check",
@@ -191,7 +197,7 @@ GitRead.cmds = {
191
197
192
198
ifoperation=="help" then
193
199
localhelp_text=
194
-
"\\\nAvailable read-only Git operations:\n• status: Show repository status\n• log: Show commit history\n• diff: Show file differences\n• branch: List branches\n• remotes: Show remote repositories\n• show: Show commit details\n• blame: Show file blame info\n• stash_list: List stashes\n• diff_commits: Compare commits\n• contributors: Show contributors\n• search_commits: Search commit messages\n• tags: List all tags\n• generate_release_notes: Generate release notes between tags\n• gitignore_get: Get .gitignore content\n• gitignore_check: Check if a file is ignored\n"
200
+
"\\\nAvailable read-only Git operations:\n• status: Show repository status\n• log: Show commit history\n• diff: Show file differences\n• branch: List branches\n• remotes: Show remote repositories\n• show: Show commit details\n• blame: Show file blame info\n• stash_list: List stashes\n• diff_commits: Compare commits\n• contributors: Show contributors\n• search_commits: Search commit messages\n• tags: List all tags\n• generate_release_notes: Generate release notes between tags\n• conflict_status: List files with merge conflicts\n• conflict_show: Show conflict markers in a file\n• gitignore_get: Get .gitignore content\n• gitignore_check: Check if a file is ignored\n"
0 commit comments