// Copyright 2019 Pascal Bach.
//
// SPDX-License-Identifier: Apache-2.0 or MIT
/// A simple git credential helper that
/// provides the credentials from the two environment variables
/// `GIT_USER` and `GIT_PASS`.
///
/// Just copy the resulting binary `git-credential-env` into `PATH` and
/// configure it using `git config credential.helper env`.
use GitCredential;
use env;