diff --git a/README.md b/README.md index 1ff6f44cf..c7d3effef 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,7 @@ cog.out(pretty_list) | [](https://github.com/hmlendea/gfn-electron) | `geforcenow-electron` | Desktop client for Nvidia's GeForce NOW game streaming service. | | [](https://cli.github.com/) | `gh` | GitHub CLI brings GitHub to your terminal. Free and open source. | | [](https://github.com/dandavison/delta) | `git-delta` | A syntax-highlighting pager for 'git', 'diff', and 'grep' output. | +| [](https://github.com/GitCredentialManager/git-credential-manager/) | ` git-credential-manager` | Git Credential Manager (GCM) is a secure Git credential helper built on .NET that runs on Windows, macOS, and Linux. | | [](https://desktop.github.com/) | `github-desktop` | Simple collaboration from your desktop. | | [](https://www.gitkraken.com/invite/ieih1QR3) | `gitkraken` | Intuitive Git GUI & powerful Git CLI. | | [](https://gitter.im/) | `gitter` | A chat and networking platform to manage and connect communities through messaging, content and discovery. | diff --git a/deb-get b/deb-get index 89fc34aa1..2e2d02702 100755 --- a/deb-get +++ b/deb-get @@ -2807,6 +2807,18 @@ function deb_tabby-terminal() { SUMMARY="A terminal for the modern age" } +function deb_git-credential-manager() { + ARCHS_SUPPORTED="amd64" + get_github_releases "https://api.github.com/repos/GitCredentialManager/git-credential-manager/releases/latest" + if [ "${ACTION}" != "prettylist" ]; then + URL=$(grep "browser_download_url.*\.deb\"" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4) + VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8 | tr -d v)" + fi + PRETTY_NAME="Git Credential Manager" + WEBSITE="https://github.com/GitCredentialManager/git-credential-manager" + SUMMARY="Git Credential Manager (GCM) is a secure Git credential helper built on .NET that runs on Windows, macOS, and Linux." +} + # Create an array to track those deb_ functions being loaded by this script readonly DEB_GET_APPS=($(declare -F | grep deb_ | sed 's|declare -f deb_||g' | sort))