AppImage

AppImage available on GitLab

Requirements

git-gamble doesn't repackage git, it uses the one installed on your system

You have to install git manually

Make sure it is available in your $PATH, you can check it with this command

git --help

Install latest main version

  1. Download the latest main version

    curl --location "https://gitlab.com/pinage404/git-gamble/-/jobs/artifacts/main/raw/target%2Fgit-gamble-v-x86_64.AppImage?job=package%20AppImage" --output git-gamble-x86_64.AppImage
    
  2. Make it executable

    chmod +x git-gamble-x86_64.AppImage
    
  3. Put it your $PATH

    # for example
    mkdir -p ~/.local/bin
    ln git-gamble-x86_64.AppImage ~/.local/bin/git-gamble
    export PATH+=":~/.local/bin"
    

Install latest released version

  1. Download the latest released version

    curl --location "https://gitlab.com/api/v4/projects/pinage404%2Fgit-gamble/packages/generic/git-gamble-AppImage/2.7.0/git-gamble-v2.7.0-x86_64.AppImage" --output git-gamble-v2.7.0-x86_64.AppImage
    
  2. Make it executable

    chmod +x git-gamble-v2.7.0-x86_64.AppImage
    
  3. Put it your $PATH

    # for example
    mkdir -p ~/.local/bin
    ln git-gamble-v2.7.0-x86_64.AppImage ~/.local/bin/git-gamble
    export PATH+=":~/.local/bin"
    

Update

There is no update mechanism

Uninstall

Just remove the binary from your $PATH