- DONE In order to clone a private [[git]] repo, run the following in your terminal cd'ed into the directory that you wish to clone the private repo:
git clone https://[email protected]/USERNAME/repo_name
- TODO Tutorial for using [[yarn]] with [[Nextjs]]
-
-
# Use macOS homebrew for installation brew install yarn # Find out yarn version with yarn -version
-
-
-
# Install "latest" version of package yarn add package-name # Install a specific version of package yarn add [email protected]
-
yarn remove package-name
-
-
-
yarn create next-app # or for typescript yarn create next-app --typescript
-
-