feat: production audit + add init/clone/reflog/submodule/bisect IPC and CI split#18
Merged
Merged
Conversation
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
GitPilot build artifacts are readyOne CI workflow run built all 3 desktop apps: open workflow run. Download links:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
docs/production-audit.mdthat summarizes feature gaps, refactors, and a multi-stage roadmap.init_repositoryandclone_repositoryinsrc-tauri/src/commands/repository.rswith validation for paths, initial branch, branch/depth clone options, and safe destination checks.src-tauri/src/commands/maintenance.rswithlist_reflog,list_submodules,update_submodules, and bisect lifecycle commands (start_bisect,mark_bisect,reset_bisect,get_bisect_state).src-tauri/src/lib.rs) and addedpub mod maintenance;tosrc-tauri/src/commands/mod.rs.ReflogEntry,SubmoduleInfo,BisectState) tosrc-tauri/src/models/git.rsand exposed matching TypeScript types and service calls insrc/types/git.tsandsrc/services/gitService.ts..github/workflows/ci.yml) by splitting fast PR validation (validatejob) from cross-platform packaging (packagejob), enabling Node and Rust caching and avoiding building desktop bundles on pull requests.Testing
cargo fmt --manifest-path src-tauri/Cargo.toml(succeeded).git diff --check(no whitespace/build issues reported).npm run typecheck(tsc --noEmit) andnpm run build(vite build) (both succeeded).npm run tauri:check/cargo checkwas attempted but is blocked locally due to a missing system dependency (glib-2.0); installing system packages viaaptfailed in the environment due to network/proxy403errors, so full backend checks are currently blocked.Codex Task