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
root@codesposts:~# sqlite3 /var/lib/grafana/grafana.db | |
SQLite version 3.28.0 2019-07-04 01:12:19 | |
Enter ".help" for instructions | |
Enter SQL statements terminated with a ";" | |
sqlite> .tables | |
alert dashboard_version quota | |
alert_notification data_source session | |
annotation login_attempt star | |
annotation_tag migration_log tag |
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++; |
JLinkExe -device nrf51822 -if swd -speed 4000 |
JLinkEXE -device nrf51822 -if swd -speed 4000 |