- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/) called.ssh. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
| <?php | |
| $curl = curl_init('http://landregistry.data.gov.uk/landregistry/query'); | |
| curl_setopt_array($curl, array( | |
| CURLOPT_VERBOSE => true, | |
| CURLOPT_ENCODING => 'gzip,deflate', | |
| CURLOPT_HTTPHEADER => array('Accept: text/plain'), | |
| )); |
cd to navigate to where you want to put your projectgit clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream