Skip to content

Install

Installing gitit is easy. Simply pull it in via your package manager of choice, or download the binary directly.

Package Managers

Choose your package manager of choice:

sh
npm install --save-dev @stacksjs/gitit
# npm i -d @stacksjs/gitit

# or, install globally via
npm i -g @stacksjs/gitit
sh
bun install --dev @stacksjs/gitit
# bun add --dev @stacksjs/gitit
# bun i -d @stacksjs/gitit

# or, install globally via
bun add --global @stacksjs/gitit
sh
pnpm add --save-dev @stacksjs/gitit
# pnpm i -d @stacksjs/gitit

# or, install globally via
pnpm add --global @stacksjs/gitit
sh
yarn add --dev @stacksjs/gitit
# yarn i -d @stacksjs/gitit

# or, install globally via
yarn global add @stacksjs/gitit
sh
brew install gitit # coming soon
sh
pkgx gitit # coming soon

Read more about how to use it in the Usage section of the documentation.

Binaries

Choose the binary that matches your platform and architecture:

sh
# Download the binary
curl -L https://github.com/stacksjs/gitit/releases/download/v0.1.0/gitit-darwin-arm64 -o gitit

# Make it executable
chmod +x gitit

# Move it to your PATH
mv gitit /usr/local/bin/gitit
sh
# Download the binary
curl -L https://github.com/stacksjs/gitit/releases/download/v0.1.0/gitit-darwin-x64 -o gitit

# Make it executable
chmod +x gitit

# Move it to your PATH
mv gitit /usr/local/bin/gitit
sh
# Download the binary
curl -L https://github.com/stacksjs/gitit/releases/download/v0.1.0/gitit-linux-arm64 -o gitit

# Make it executable
chmod +x gitit

# Move it to your PATH
mv gitit /usr/local/bin/gitit
sh
# Download the binary
curl -L https://github.com/stacksjs/gitit/releases/download/v0.1.0/gitit-linux-x64 -o gitit

# Make it executable
chmod +x gitit

# Move it to your PATH
mv gitit /usr/local/bin/gitit
sh
# Download the binary
curl -L https://github.com/stacksjs/gitit/releases/download/v0.1.0/gitit-windows-x64.exe -o gitit.exe

# Move it to your PATH (adjust the path as needed)
move gitit.exe C:\Windows\System32\gitit.exe

TIP

You can also find the gitit binaries in GitHub releases.

Released under the MIT License.