From 301a2f2613656f013913372828a5af626625e059 Mon Sep 17 00:00:00 2001 From: Akarsh Jain Date: Fri, 23 Dec 2022 08:42:42 +0530 Subject: [PATCH] docs: Added git as in the prerequisites section of the Quickstart Guide Fixes: #2850 --- docs/content/quickstart/quick-start.md | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/content/quickstart/quick-start.md b/docs/content/quickstart/quick-start.md index 2b08d692c5273..5adcb60aa45ac 100644 --- a/docs/content/quickstart/quick-start.md +++ b/docs/content/quickstart/quick-start.md @@ -1,3 +1,7 @@ +import styles from './development.module.css'; +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + # Quickstart This document will guide you through setting up your Medusa server in a few minutes. @@ -12,6 +16,42 @@ node -v You can install Node from the [official website](https://nodejs.org/en/). +### Git + +Medusa uses Git behind the scenes when you create a new project so you'll have to install it on your computer to get started. + + + + +To install Git on Windows, you need to [download the installable package](https://git-scm.com/download/win). + + + + +For Debian/Ubuntu, you can use the following command: + +```bash +apt-get install git +``` + +As for other Linux distributions, please check [git’s guide](https://git-scm.com/download/linux). + + + + +You should already have Git installed as part of the Xcode command-line tools. + +However, if for any reason you need to install it manually, you can install it with Homebrew: + +```bash +brew install git +``` + +You can also check out [git’s guide](https://git-scm.com/download/mac) for more installation options. + + + + ## Create a Medusa Server :::tip