[go: nahoru, domu]

Skip to content

Commit

Permalink
history rewritten
Browse files Browse the repository at this point in the history
The history before this commit was rewritten to remove large blobs from
the repository.

The original history is available at

    https://github.com/tigerbeetle/tigerbeetle-history-archive

History rewrite script:

    #!/usr/bin/env bash

    set -xe
    REPO=git@github.com:tigerbeetle/tigerbeetle

    git clone $REPO original
    git clone $REPO filtered

    pushd filtered
    git filter-repo --invert-paths \
      --path transfers \
      --path docs-site/package-lock.json \
      --path-glob */assets/js/main.*.js \
      --path-glob '*.a' \
      --path-glob '*.cjs' \
      --path-glob '*.dll' \
      --path-glob '*.dylib' \
      --path-glob '*.lib' \
      --path-regex '^(.*)/(?!favicon)([^/]*)\.png$' \
      --path-glob '*.so'
    popd

    diff --recursive --exclude .git original filtered

    pushd filtered
    git remote add origin $REPO
    git push origin --force --all
    git push origin --force --tags
    popd

    echo "ok."
  • Loading branch information
matklad committed Jan 17, 2024
1 parent 2b935f7 commit d7c3f46
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit d7c3f46

Please sign in to comment.