SPB Git

spb/spbgit Public MIT

SPB Git — the platform hosting itself

JavaScript 73.9% CSS 11.7% Nunjucks 11.6% Shell 2.7%
819 B · 16 lines shellscript
Raw Blame History
1#!/bin/sh2# ─────────────────────────────────────────────3#  SPB Git — Personal Git Platform4# ─────────────────────────────────────────────5#  Author  : Simon-Pierre Boucher6#  Contact : contact@spboucher.ai7#  File    : cli/lib/askpass.sh8#  Purpose : GIT_ASKPASS helper — feeds credentials from env, never argv9#  License : MIT © Simon-Pierre Boucher10# ─────────────────────────────────────────────11case "$1" in12  Username*) printf '%s\n' "${SPBGIT_USERNAME:-spb}" ;;13  Password*) printf '%s\n' "${SPBGIT_TOKEN}" ;;14  *) printf '\n' ;;15esac16