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
| angular.module('app', []) | |
| .factory('FakeAmazonService', function($http, $q) { | |
| return { | |
| validateShippingAdddress: function(address) { | |
| var deferred = $q.defer(); | |
| $http.post('/api/address/validate', address) | |
| .then(function(resp) { | |
| deferred.resolve({ success: true, data: resp}); | |
| }), | |
| function(error) { |
| package pt.impresa.iweb.filters.request; | |
| import java.io.IOException; | |
| import java.text.Normalizer; | |
| import java.util.Collections; | |
| import java.util.Enumeration; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.Set; | |
| import java.util.regex.Pattern; |
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