Skip to content

gitoxide

vgix-path-v0.12.2 scope: gix-path Bugfix

This release fixes issues for SREs watching stability and regressions.

Published 12d Version Control
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

blazingly-fast built-with-rust cli git version-control

Summary

AI summary

Updates Commit Details, Commit Statistics, and Bug Fixes across a mixed release.

Changes in this release

Bugfix Medium

Local clones succeed even if git-upload-pack is not in PATH

Local clones succeed even if git-upload-pack is not in PATH

Source: llm_adapter@2026-07-15

Confidence: high

Full changelog

Bug Fixes

  • local clones succeed even if git-upload-pack is not in PATH
    Local clones spawn the service program, like git-upload-pack, by name and would
    fail if it could not be found in PATH. This is common on Windows, where git can
    be installed such that git itself is available but its subcommands are not, for
    instance with scoop.

    Now, when spawning the service program for a local repository fails because it
    cannot be found, find the same program in the directory that git --exec-path
    reports - the location git itself uses to run its subcommands - and run it from
    there. If it cannot be found there either, run the git binary that is always
    findable with the service as its subcommand, which it can always dispatch.

    Remote transports are unaffected - they keep the standard invocation so servers
    can provide their own implementations - and no shell is involved in any of this.

    The newly added gix_path::env::core_dir_program() provides the lookup and may
    serve other Git-provided programs in the future.

    Git for Windows builds with SKIP_DASHED_BUILT_INS and thus does not provide
    programs for builtin subcommands like git-upload-pack in its core directory.
    The test now grounds itself in a listing of that directory instead, and the
    documentation of core_dir_program() points out the difference - such programs
    are still run through git itself thanks to the second fallback.

Commit Statistics

  • 7 commits contributed to the release.
  • 50 days passed between releases.
  • 1 commit was understood as conventional.
  • 1 unique issue was worked on: #2313

Commit Details

view details
  • #2313
    • Local clones succeed even if git-upload-pack is not in PATH (82cdb47)
  • Uncategorized
    • Merge pull request #2700 from ameyypawar/fix/2313-upload-pack-fallback (9884f48)
    • Review (151a0af)
    • Merge pull request #2693 from Manishearth/relative-path-transparent (19bdf8a)
    • Annotate RelativePath transmute types for clippy (7ef83ca)
    • Actually mark RelativePath as transparent (d5f3723)
    • Merge pull request #2618 from GitoxideLabs/report (f7d4f33)

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track gitoxide

Get notified when new releases ship.

Sign up free

About gitoxide

An idiomatic, lean, fast & safe pure Rust implementation of Git

All releases →

Related context

Related tools

Earlier breaking changes

  • vgix-v0.84.0 Allow checkouts of empty repositories; `destination_must_be_empty` becomes `Option<bool>`
  • vgix-worktree-stream-v0.33.0 Changes API of `Stream::add_entry_from_path` to require `hash_kind` argument.
  • vgix-object-v0.61.0 Renames `Data::hash_kind` to `Data::object_hash` for consistency.

Beta — feedback welcome: [email protected]