changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: packy git unbundle

changeset 344: 3e1218fe5721
parent 343: 28572d262f4c
child 345: 2e8d64feff08
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 21 Jul 2024 19:31:29 -0400
files: scripts/init-vc-bundles.sh
description: packy git unbundle
     1.1--- a/scripts/init-vc-bundles.sh	Sun Jul 21 19:02:36 2024 -0400
     1.2+++ b/scripts/init-vc-bundles.sh	Sun Jul 21 19:31:29 2024 -0400
     1.3@@ -13,3 +13,10 @@
     1.4   cd "$r" && hg unbundle "$DIR/$i" && cd "$DIR"
     1.5   rm "$i"
     1.6 done
     1.7+cd $DIR/packy
     1.8+for i in $(find . -type f -name "*.git"); do
     1.9+  echo "unbundling $I"
    1.10+  r=$(basename "$i" .git)
    1.11+  git init "$r"
    1.12+  cd "$r" && git fetch "$DIR/packy/$i" && cd "$DIR/packy"
    1.13+done