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
| [ | |
| { | |
| "quoteText": "Quote # 1 text goes here", | |
| "author": "Author #1" | |
| }, | |
| { | |
| "quoteText": "Quote # 2 text goes here", | |
| "author": "Author #2" | |
| }, | |
| { |
| { | |
| "firstName": "Rack", | |
| "lastName": "jackson", | |
| "gender": "man", | |
| "age": 24, | |
| "address": { | |
| "streetAddress": "126 Udhna", | |
| "city": "san jone", | |
| "state": "CA", | |
| "postalCode": "394221" |
| <?php | |
| /** | |
| * Implements hook_theme_suggestions_HOOK_alter(). | |
| */ | |
| function MYTHEME_theme_suggestions_form_element_alter(&$suggestions, $variables) { | |
| array_unshift($suggestions, 'form_element__' . $variables['element']['#type']); | |
| } | |
| /** |
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