diff --git a/Move to a new git repo.md b/Move to a new git repo.md index 63e154c..5db5317 100644 --- a/Move to a new git repo.md +++ b/Move to a new git repo.md @@ -9,9 +9,9 @@ Taken from: https://stackoverflow.com/questions/1484648/how-to-migrate-git-repos ## Steps to take from a git-capable command line -1. git clone --mirror -2. cd -3. git remote set-url origin +1. git clone --mirror <URL to my OLD repo location> +2. cd <New directory where your OLD repo was cloned> +3. git remote set-url origin <URL to my NEW repo location> 4. git push --mirror origin ## After