| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Command-line tool for the Endstone plugin ecosystem
EndGit CLI allows developers to publish, search, and install Endstone plugins directly from the terminal.
Windows:
irm https://endgit.dev/installer.ps1 | iexLinux / macOS:
curl -sSL https://endgit.dev/installer.sh | bashendgit login
endgit search <query>
endgit info <plugin>
endgit install <plugin[@version|@commit]>
endgit upgrade [plugin]
endgit remove <plugin>
endgit list
endgit init
endgit publish
endgit whoami
endgit update| Command | Description |
|---|---|
| endgit login | Authenticate with EndGit |
| endgit logout | Logout of EndGit |
| endgit search <query> | Search the plugin marketplace |
| endgit info <plugin> | Show detailed plugin information |
| endgit install <plugin[@version]> | Install a plugin to your server |
| endgit upgrade [plugin] | Upgrade installed plugins to the latest version |
| endgit list | List installed plugins |
| endgit remove <plugin> | Remove an installed plugin |
| endgit whoami | Show the currently authenticated user |
| endgit init | Initialize a new plugin project |
| endgit publish | Package and publish your plugin |
| endgit update | Update EndGit CLI to the latest version |
git clone https://github.com/two-tech-dev/endgit-cli.git
cd endgit-cli
# Development build
go build -o endgit .
# Production build (with version injection)
go build -ldflags="-s -w -X github.com/two-tech-dev/endgit-cli/cmd.Version=v0.1.5" -o endgit .go run .This project is licensed under the GNU Affero General Public License v3.0.
| Back | FazBrowse Home | New Git URL |