Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 398 Bytes

File metadata and controls

24 lines (16 loc) · 398 Bytes

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