Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: seeraven/gitcache

gitcache v1.0.29

05 Oct 07:27

Choose a tag to compare

Changelog

  • Feature: Use relative paths in database.
  • Bugfix: Ensure GITCACHE_DIR is normalized (thanks to guoh27)
  • Feature: Support shallow cloning from local mirror with the --depth option

gitcache v1.0.28

26 Apr 14:38

Choose a tag to compare

Changelog

  • Bugfix: Capture CTRL-C and forward it to the git subprocess.

gitcache v1.0.27

28 Mar 04:39

Choose a tag to compare

Changelog

  • Bugfix: Fix git remote add origin command when not using the -C option.

gitcache v1.0.26

21 Mar 13:30

Choose a tag to compare

Changelog

  • Bugfix: Fix command line handling when using the git remote command.

gitcache v1.0.25

27 Feb 15:40

Choose a tag to compare

Changelog

  • Handle git remote add origin by cloning the remote if it was not mirrored
    before and configure the mirror for the remote origin fetch.

gitcache refs/tags/v1.0.24

03 Feb 15:14

Choose a tag to compare

gitcache v1.0.24

  • To allow fetching orphaned commits, the git fetch command retries a failed command in the mirror directory.

gitcache refs/tags/v1.0.23

01 Feb 07:48

Choose a tag to compare

gitcache v1.0.23

  • Added support for Ubuntu 22.04 and Ubuntu 24.04 on ARM.
  • Updated pip dependencies.

gitcache refs/tags/v1.0.22

24 Dec 06:24

Choose a tag to compare

Changes since v1.0.21

  • Bugfix in functional test with an invalid repository name.
  • Moved main entry point into the module to allow building a wheel.
  • Added first support in Makefile to build and test a wheel.
  • Added support to the github runner to create a wheel release.

gitcache v1.0.21

27 Nov 07:08

Choose a tag to compare

Changes since v1.0.20

  • New partial clone mode available by setting the config variable CloneStyle (section Clone) to
    PartialFirst or setting the environment variable GITCACHE_CLONE_STYLE=PartialFirst. This mode
    creates the mirror by performing a shallow clone first followed by a git fetch -unshallow.
    Thanks to An Darejkal for the implementation!

gitcache v1.0.20

24 Nov 10:51

Choose a tag to compare

Changes since v1.0.19

  • Support flags --recursive, --recurse-submodules and --remote-submodules of git clone.