Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Git Craft
PluginLicenseRef-

Git Craft

Secure in-game Git commands for Paper servers, built for developers and server admins who want to manage repositories directly from Minecraft.

7
Downloads
0
Followers
2 months ago
Updated
📦
1
Versions
managementtechnologyutilitypaper
Download Latestv1.0.1View on Modrinth

📖About Git Craft

GitCraft

GitCraft is a Paper plugin that lets server admins and developers run Git commands directly from Minecraft using /git.

This plugin is built and tested for Paper 1.21.11.

It may work on other 1.21.x versions, but those versions have not been tested.

Features

  • Run Git commands in-game or from console
  • Initialize repositories
  • Add, commit, status, reset, fetch, pull, and push changes
  • Manage the origin remote
  • Store Git credentials securely using an encrypted H2 database
  • Supports GitHub personal access tokens
  • Permission-based command access
  • Async Git operations to help avoid server lag
  • Built for Paper 1.21.11

Commands

Command List
/git help
/git init --path=<folder>
/git remote --add --url=<repo-url> --path=<folder>
/git remote --set-url --url=<repo-url> --path=<folder>
/git remote --remove --path=<folder>
/git add . --path=<folder>
/git add <file> --path=<folder>
/git commit -m=<message> --path=<folder>
/git status --path=<folder>
/git reset --path=<folder>
/git reset --hard --path=<folder>
/git fetch --path=<folder>
/git pull --path=<folder>
/git push --path=<folder>
/git login --username=<username> --token=<token>
/git whoami
/git logout

Basic Usage

  1. Put Git-Craft.jar in your server's plugins folder.
  2. Restart the server.
  3. Run /git help.
  4. Initialize a repo:
/git init --path=plugins/MyProject
  1. Add a remote:
/git remote --add --url=https://github.com/user/repo.git --path=plugins/MyProject
  1. Log in with a GitHub token:
/git login --username=YourUsername --token=YourToken
  1. Stage, commit, and push:
/git add . --path=plugins/MyProject
/git commit -m=update-files --path=plugins/MyProject
/git push --path=plugins/MyProject

GitHub Token Setup

Create a GitHub personal access token with repository access.

For fine-grained tokens, use:

Repository access: selected repository
Contents: read and write
Metadata: read-only

Then log in:

/git login --username=YourUsername --token=YourToken

Permissions

Permission list
gitcraft.command.help
gitcraft.command.init
gitcraft.command.remote
gitcraft.command.add
gitcraft.command.commit
gitcraft.command.reset
gitcraft.command.status
gitcraft.command.fetch
gitcraft.command.pull
gitcraft.command.push
gitcraft.command.login
gitcraft.command.whoami
gitcraft.command.logout

By default, commands are available to operators.

Configuration

config.yml
# WARNING: Disabling this allows users to push to public Git hosts such as GitHub or GitLab.
disable-unsafe-warning: false

Security Notes

GitCraft stores credentials in an encrypted local H2 database inside the plugin data folder.

Public Git hosting is blocked by default when adding remotes. To allow GitHub or GitLab remotes, set:

Allow public Git hosts
disable-unsafe-warning: true

Use this carefully. For production servers, self-hosted Git services such as Gitea or Forgejo are recommended.

Requirements

  • Paper server
  • Minecraft 1.21.11
  • Java 21 or newer

👥 Team & Contributors

wayback
waybackOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paper
Minecraft Versions
1.21.11

🔗 Links

Modrinth Page