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
| $starting_path = Get-Location | |
| $node_version = node -v | |
| $node_path = "$env:appdata\nvm\$node_version" | |
| Write-Host "node_version: $node_version" | |
| Write-Host "Path used: $node_path" | |
| cd $node_path | |
| Remove-Item npm | |
| Remove-Item npm.cmd | |
| Remove-Item npx | |
| Remove-Item npx.cmd | 
| # Install the version that you would like | |
| nvm install 6.1.0 | |
| # Set 6.1.0 (or another version) as default | |
| nvm alias default 6.1.0 | 
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
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
| set-executionpolicy remotesigned | 
| $ git config credential.helper store | |
| $ git push http://example.com/repo.git | |
| Username: <type your username> | |
| Password: <type your password> |