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
function GitStream() { | |
var sort_asc = function (commit1, commit2) { | |
if (commit1.date < commit2.date) return 1; | |
if (commit1.date > commit2.date) return -1; | |
return 0; | |
}; | |
var commits = []; | |
var toDo = 0; | |
var done = 0; |
var HashMap = function(){ | |
this._size = 0; | |
this._map = {}; | |
} | |
HashMap.prototype = { | |
put: function(key, value){ | |
if(!this.containsKey(key)){ | |
this._size++; |