Skip to content

Commit

Permalink
feat: add gitkraken cli (gk)
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford authored and flexiondotorg committed Dec 30, 2024
1 parent b692e9f commit c870592
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions 01-main/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ git-delta
github-desktop
gitkraken
gitter
gk
glab
glow
google-chat-electron
Expand Down
15 changes: 15 additions & 0 deletions 01-main/packages/gk
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
DEFVER=1
ARCHS_SUPPORTED="amd64 arm64 armhf"
case ${HOST_ARCH} in
amd64) ARCH=x86_64 ;;
arm64) ARCH=arm64 ;;
armhf) ARCH=arm7 ;;
esac
get_github_releases "gitkraken/gk-cli" "latest"
if [ "${ACTION}" != "prettylist" ]; then
URL=$(grep -E "browser_download_url.*_${ARCH}\.deb\"" "${CACHE_FILE}" | cut -d'"' -f4)
VERSION_PUBLISHED=$(cut -d'/' -f8 <<<"${URL}" | tr -d v)
fi
PRETTY_NAME="GitKraken CLI"
WEBSITE="https://www.gitkraken.com/"
SUMMARY="gk is GitKraken on the command line. It makes working across multiple repos easier with Workspaces, provides access to pull requests and issues from multiple services (GitHub, GitLab, Bitbucket, etc.), and seamlessly connects with GitKraken Client and GitLens in VS Code to visualize git information when you need it."

0 comments on commit c870592

Please sign in to comment.