git 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
| // const cities = ['ROME', 'PARIS', 'LONDON', 'LOS ANGELES', 'VIENNA']; | |
| // cities.forEach((value, index, array) => { | |
| // console.log(`${index + 1} ${value}`); //output: 1 ROME, 2 PARIS, 3 LONDON, 4 LOS ANGELES, 5 VIENNA | |
| // }); | |
| // //we can use it to invert the "cities" array...even though with reverse() would be better 😉 | |
| // const invertedCities = []; | |
| // cities.forEach((value, index, array) => invertedCities.unshift(value)); | |
| // console.log(invertedCities); //output: ["VIENNA", "LOS ANGELES", "LONDON", "PARIS", "ROME"] |
| Verifying my Blockstack ID is secured with the address 1FMn8wNTyf3nSjB7trqQuyGX17uEDVkgTo https://explorer.blockstack.org/address/1FMn8wNTyf3nSjB7trqQuyGX17uEDVkgTo |
git 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