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
| #!/bin/bash | |
| # perl: warning: Setting locale failed. | |
| # perl: warning: Please check that your locale settings: | |
| # LANGUAGE = (unset), | |
| # LC_ALL = (unset), | |
| # LC_CTYPE = "UTF-8", | |
| # LANG = "en_US.UTF-8" | |
| # are supported and installed on your system. | |
| # perl: warning: Falling back to the standard locale ("C"). |
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
| // ==UserScript== | |
| // @name Twitter Cramming | |
| // @description Force enable cramming (280 character tweets) on Twitter | |
| // @author Prof. 9 | |
| // @version 0.1 | |
| // @match https://twitter.com/* | |
| // @run-at document-idle | |
| // @namespace prof9.twittercramming | |
| // ==/UserScript== |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |