Skip to content

Instantly share code, notes, and snippets.

@smling
Created March 1, 2023 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smling/672a9c610e2e8ba92bd9311e2c2b0383 to your computer and use it in GitHub Desktop.
Save smling/672a9c610e2e8ba92bd9311e2c2b0383 to your computer and use it in GitHub Desktop.
Mirror Git repository
$source=$args[0]
$destination=$args[1]
$repoHome=$args[2]
$sourceUrl=[uri]$source
$folderName=$repoHome+"\\"+$source.Split('/')[-1]+".git"
cd $repoHome
git clone $source --mirror
cd $folderName
git push $destination --mirror
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment