Deployment Guide Configure local repository Disable file permission tracking (prevents false positives in git diff): git config core.filemode false Change remote URL Update the remote origin to point to the new repository: git remote set-url origin git@github.com:user/new-repo.git Checkout master branch and pull git checkout master git pull