LLM支持优化

This commit is contained in:
2026-05-26 17:43:42 +08:00
parent a08bc809bb
commit 4331b9306e
26 changed files with 2309 additions and 669 deletions

View File

@@ -283,7 +283,7 @@ pub fn delete_tag(repo: &GitRepo, name: &str, remote: Option<&str>) -> Result<()
let refspec = format!(":refs/tags/{}", name);
let output = Command::new("git")
.args(&["push", remote, &refspec])
.args(["push", remote, &refspec])
.current_dir(repo.path())
.output()?;