GitMan is a simple package manager written in Go. It allows you to install packages from a centralized repository using Git.
To use GitMan, follow these steps:
-
Install GitMan with:
curl -sSL https://raw.githubusercontent.com/riviox/GitMan/main/install.sh | bash
- Dependencies:
- Go
- Git
- Install deps with pacman:
sudo pacman -S go git
- Install deps with pacman:
- To update GitMan run:
gitman_update
- Dependencies:
-
Install a package:
gitman -S <package_name>
Replace
<package_name>
with the name of the package you want to install. -
List packages:
gitman -L
-
Remove package:
gitman -R <package_name>
Replace
<package_name>
with the name of the package you want to remove.
# To install 'hellocpp'
gitman -S hellocpp
# To remove 'hellocpp'
gitman -R hellocpp