From 70492e8a77ef05ea77da42d304551311f213a90c Mon Sep 17 00:00:00 2001 From: Gordey Date: Wed, 4 Mar 2020 06:30:40 +0600 Subject: [PATCH] Add info about forking and cloning to developer guide (#747) Co-authored-by: PopGoesTheWza <32041843+PopGoesTheWza@users.noreply.github.com> --- docs/develop.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/develop.md b/docs/develop.md index 97f060ed..b6a73ed9 100644 --- a/docs/develop.md +++ b/docs/develop.md @@ -9,6 +9,12 @@ You can develop and test `clasp` on your computer by following these steps. - Install `tsc`: `npm install -g typescript` - Remove your local version of `clasp`: `npm uninstall -g @google/clasp` - This will prevent errors when updating `node_modules`. +- [Fork](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) the `clasp` repository +- Clone it to your device +``` +git clone https://github.com//clasp.git +cd clasp +``` - Install dependencies: `npm install` ### After Making a Change