thaemisch's docs

Installation

At the current state of this project, I feel like it is not worthy to be included in package managers, so you will have to build the binaries yourself. Unless you use NixOS with flakes.

NixOS

  1. Add this GitHub repository to the inputs of your flake.nix:
    gitzeug.url = "github:thaemisch/gitzeug";
  2. Add the package to your configuration.nix:
    environment.systemPackages = with pkgs; [
       ...
       inputs.gitzeug.packages.${pkgs.system}.gitzeug
    ];

Binaries

  1. Ensure you have Rust installed.
  2. Clone this repository:
    git clone https://github.com/thaemisch/gitzeug.git
  3. Navigate to the project directory:
    cd gitzeug
  4. Build the project:
    cargo build --release
  5. Add the binary to your PATH for easy access:
    export PATH=$PATH:$(pwd)/target/release

On this page