Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 324 Bytes

File metadata and controls

22 lines (17 loc) · 324 Bytes

cd

cd local/cloned/fork-repo

Then, init the upstream, run

git remote add upstream git@github.com:TryGhost/Casper.git && \
git fetch upstream && \
git pull upstream master && \
git push;

Then, the next time you want to upgrade, run:

git fetch upstream && \
git pull upstream master && \
git push;