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
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
[tox] | |
envlist=py27,lint | |
[testenv] | |
downloadcache={homedir}/.pipcache | |
distribute=True | |
sitepackages=False | |
[testenv:py27] | |
deps=nose |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
/** | |
* This is from community accepted conventions and feel free to judge upon them. | |
* | |
* Upon Method Invocation chaining, one can prefer the 'fooIndent' method over 'fooNotIndent' | |
* (as well as barIndent over barNotIndent), | |
* Not only it improves readibility upon reading (by gradually grasping the functionality) but also it does not consume | |
* the whole screen (thus not making you scroll). | |
* | |
* The use of '.' upon invocation is debatable. | |
* Some argue that the leading '.' should be removed [2] |