Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add gitkraken cli (gk) #1251

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 01-main/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,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."
Loading