Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 630 Bytes

HOW-TO-GIT-MIRROR.md

File metadata and controls

16 lines (11 loc) · 630 Bytes

HOW-TO: Mirror from a public to a private repository

This is a mirror repository based on this repository.

The creation of this mirror was performed using these original instructions

Ongoing top-ups can be made using the following:

# To pull new hotness from the public repo:

cd private-repo   # i.e. this folder
git remote add public https://github.com/mitmedialab/sherlock-project.git
git pull public master # Creates a merge commit
git push origin master