Skip to content

Instantly share code, notes, and snippets.

View theodorosidmar's full-sized avatar
👨‍💻
☕️

sid theodorosidmar

👨‍💻
☕️
View GitHub Profile
# Package.json
"debug": "node_modules/.bin/nodemon --inspect-brk=0.0.0.0:9229 index.js"
# lauch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
@theodorosidmar
theodorosidmar / UPTODATEFORK.md
Last active May 1, 2018 02:38 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPOSITORY.git

2. Add remote from original repository in your forked repository:

cd forked-repository
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream