From 872a7582d0ffe45e363bed4c640ba0832075cd65 Mon Sep 17 00:00:00 2001
From: Adam Shaw <arshaw@users.noreply.github.com>
Date: Mon, 12 Feb 2024 17:34:04 -0500
Subject: [PATCH] remove some debugging

---
 scripts/src/sync-repos.ts | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/scripts/src/sync-repos.ts b/scripts/src/sync-repos.ts
index d01668fdc..b377dd598 100644
--- a/scripts/src/sync-repos.ts
+++ b/scripts/src/sync-repos.ts
@@ -5,27 +5,6 @@ export default async function() {
   const monorepoDir = process.cwd()
   const gitSubrepoBin = joinPaths(monorepoDir, 'scripts/bin/git-subrepo.sh') // TODO: DRY
 
-  // Try...
-  await execLive([gitSubrepoBin, 'fetch', '--all'])
-
-  console.log('TEST!!!0...')
-  await execLive('git -v')
-
-  console.log('TEST!!!1...')
-  await execLive('git status')
-
-  console.log('TEST!!!2...')
-  await execLive('git show --stat 9dcb198e6428b5b1b8a98afee319e95e09c328b1')
-
-  console.log('TEST!!!3...')
-  await execLive('git show --stat HEAD')
-
-  console.log('TEST!!!4...')
-  await execLive('git diff 9dcb198e6428b5b1b8a98afee319e95e09c328b1..HEAD')
-
-  console.log('TEST!!!5...')
-  await execLive('git rev-list --reverse --ancestry-path --topo-order 9dcb198e6428b5b1b8a98afee319e95e09c328b1..HEAD')
-
   // Push to subrepos. Will fail if our copies are not up-to-date
   await execLive([gitSubrepoBin, 'push', '--all'])