Git Path Config
Git Path Config
not installed on your system or it is not available in your system's PATH. To resolve this, you'll need to
install Git and ensure it is properly added to your PATH.
Here are the steps to install Git and add it to your PATH:
Windows
1. Download Git:
2. Install Git:
o Make sure to select the op on that allows you to add Git to your PATH during the
installa on process.
o Open Command Prompt and type git --version to verify that Git is installed and
available in your PATH.
macOS
o If you don't have Homebrew installed, you can install it by running the following
command in Terminal:
sh
Copy code
sh
Copy code
o Open Terminal and type git --version to verify that Git is installed and available in
your PATH.
Linux (Ubuntu/Debian)
1. Install Git:
sh
Copy code
sudo apt update
o Type git --version in Terminal to verify that Git is installed and available in your PATH.
If Git is installed but s ll not found in your PATH, you can add it manually:
1. Windows:
o In the "System variables" sec on, find the "Path" variable and click "Edit".
o Add the path to your Git bin and cmd folders (e.g., C:\Program Files\Git\bin and
C:\Program Files\Git\cmd).
2. macOS/Linux:
o Open your shell configura on file (e.g., ~/.bashrc, ~/.zshrc, or ~/.profile) in a text
editor.
sh
Copy code
export PATH="/usr/local/bin/git:$PATH"
sh
Copy code
A er ensuring Git is installed and added to your PATH, try running the Laravel installa on command
again. If you encounter any further issues, feel free to ask for more help!