# install

### Linux (Debian/Ubuntu):

```bash
sudo apt update
sudo apt install git
```

### macOS:

*You can use Homebrew:*

```bash
brew install git
```

*Or install Xcode Command Line Tools (which includes Git):*

```bash
xcode-select --install
```

### Windows:

* Go to [GIT](https://git-scm.com/)
* Download the Windows installer.
* Run the installer and follow the setup steps.
* After installation, open Git Bash or use Git in your terminal or any IDE.

### Verify Installation

*After installing Git, open your terminal and run:*

```bash
git --version
```
