Fix "git: command not found"
Is your terminal failing to recognize Git commands? Learn the immediate steps to configure your system PATH variable on Windows, macOS, and Linux.
Quick Binary Solution
Add the Git binary location to your system environment PATH variable to solve "git: command not found" instantly in your terminal.# Step 1: Resolve on Windows
Windows Command Prompt or PowerShell requires the location of git.exe to be present in user environment variables.
1. Find your Git path. By default, it is: C:\Program Files\Git\cmd\.
2. Press the Windows key, search for Edit the system environment variables, and open it.
3. Click Environment Variables... at the bottom.
4. Under System Variables, locate and select Path, then click Edit....
5. Click New, paste C:\Program Files\Git\cmd\, click OK to save, and restart all terminal application instances.
# Step 2: Resolve on macOS and Linux
On Unix systems, you must ensure Git is installed and your profile file links to the active bin path:
``bash
# On Debian/Ubuntu Linux systems install git via apt:
sudo apt update && sudo apt install git -y
# On macOS systems, trigger Xcode Command Line Tools to download git:
xcode-select --install
`
If git is installed but still missing, check your executable links or path definitions in your shell configuration script:
`bash
# Add to ~/.zshrc or ~/.bashrc
export PATH="/usr/local/bin:$PATH"
source ~/.zshrc
`
To test if your changes were successful, try running the version command:
`bash
git --version
``
# Related Tools
If you are verifying package configurations or text files, use our built-in helpers: