From 76c4aba889c4cf50e4ced07e7f283c4491fc4a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=84=EC=84=B1=ED=98=B8?= Date: Fri, 9 Aug 2024 19:30:30 +0900 Subject: [PATCH] docs: add fork --- CONTRIBUTING.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a133a9060..c4a7f4cbb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,13 +38,15 @@ In general, things we find useful when reviewing suggestions are: ### Prerequisites 0. [Choose an issue about bug or feature you want to work on](https://github.com/toss/suspensive/issues) -1. Clone the repository +1. Fork this repository. +2. Clone the repository ```shell - git clone git@github.com:suspensive/react.git + git clone git@github.com:{username}/suspensive.git ``` -2. Please use the correct node version. You can use the version declared in [.nvmrc](https://github.com/toss/suspensive/blob/main/.nvmrc). We strongly recommend [nvm](https://github.com/nvm-sh/nvm) to control local machine's node version easily. also We recommend [nvm's deeper shell integration](https://github.com/nvm-sh/nvm#deeper-shell-integration) too. -3. Install packages. [We use pnpm v8. Install pnpm with corepack please if you can](https://pnpm.io/installation#using-corepack). We recommend using corepack for pnpm to automatically use the version declared in the packageManager field of package.json. +3. Please use the correct node version. You can use the version declared in [.nvmrc](https://github.com/toss/suspensive/blob/main/.nvmrc). We strongly recommend [nvm](https://github.com/nvm-sh/nvm) to control local machine's node version easily. also We recommend [nvm's deeper shell integration](https://github.com/nvm-sh/nvm#deeper-shell-integration) too. +4. Install packages. [We use pnpm v8. Install pnpm with corepack please if you can](https://pnpm.io/installation#using-corepack). We recommend using corepack for pnpm to automatically use the version declared in the packageManager field of package.json. ```shell + corepack enable && corepack prepare pnpm install ```