Skip to content

Instantly share code, notes, and snippets.

@redsnow1992
redsnow1992 / windows terminal config.md
Last active August 14, 2020 03:01
windows terminal config.md
@redsnow1992
redsnow1992 / sync fork.md
Last active March 27, 2019 09:44 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

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

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

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream