Package Details: gitkraken 7.5.5-1
Package Actions
Download the free Git client for Windows, Mac & Linux! GitKraken Git GUI is free for use with public repositories. Join leading companies like Google, Microsoft & more! What is GitKraken? GitKraken is a tool designed to manage GitHub repositories via a GUI interface. You can open, clone and create completely new repositories.
Open Source GitKraken Alternatives for Linux. There are many alternatives to GitKraken for Linux if you are looking to replace it. The most popular Linux alternative is GitAhead, which is both free and Open Source.If that doesn't suit you, our users have ranked more than 25 alternatives to GitKraken and many of them are available for Linux so hopefully you can find a suitable replacement. In Linux: set theDISPLAY environment variable, download and install the Linux version of GitKraken, and run it. Before we begin Make sure you have WSL 2 installed and configured.
- View PKGBUILD / View Changes
Git Clone URL: | https://aur.archlinux.org/gitkraken.git (read-only, click to copy) |
---|---|
Package Base: | gitkraken |
Description: | The intuitive, fast, and beautiful cross-platform Git client. |
Upstream URL: | https://www.gitkraken.com/ |
Keywords: | git |
Licenses: | custom |
Provides: | gitkraken |
Submitter: | Azd325 |
Maintainer: | Azd325 |
Last Packager: | Azd325 |
Votes: | 255 |
Popularity: | 1.42 |
First Submitted: | 2015-10-21 19:17 |
Last Updated: | 2021-04-13 07:30 |
Dependencies (6)
- gtk3(gtk3-cosy, gtk3-adwaita-3-32-git, gtk3-git, gtk3-ubuntu, gtk3-no_deadkeys_underline, gtk3-patched-filechooser-icon-view, gtk3-typeahead, gtk3-classic)
- nss(nss-hg)
- git-lfs(git-lfs-arm, git-lfs-bin, git-lfs-git)(optional) – git-lfs support
- org.freedesktop.secrets (keepassxc-kde-fix, gnome-keyring-git, bitw-git, pass-secrets-git, keepassxc-git, gnome-keyring, keepassxc)(optional) – Provides ways to store passwords and encryption keys
Sources (4)
Azd325 commented on 2016-12-06 23:45
Hey guys,
If you want to speed up/improve the process there is also a GitHub repo availaible to do PRs :)
https://github.com/Azd325/gitkraken
Thanks
Tim
Azd325 commented on 2020-08-28 14:14
It seems kwallet does not support org.freedesktop.secrets
Yakoot commented on 2020-08-28 14:11
Why it can not use kwallet instead of gnome-keyring?
GottZ commented on 2020-04-29 20:15
i just built and installed this without the libgnome-keyring dependency.i successfully managed to connect to github, gitlab, my self hosted gitlab, login to gitkraken and use my ssh key without it.
is there a reason for libgnome-keyring to be inside deps?
if it's just for org.freedesktop.secrets then this might be a good idea:https://www.archlinux.org/todo/gnome-keyring-dependency-replacement-with-orgfreedesktopsecrets/
to give you an example package that was already migrated: https://www.archlinux.org/packages/extra/x86_64/chromium/
edit:strange. i cannot seem to find any new entries in keepass or kwallet
MarcinWieczorek commented on 2020-04-25 09:29
@anwar make sure you pulled the latest commit, the package has been updated already.
anwar commented on 2020-04-24 14:46
Hi!
When installed, gitkraken shows version 6.5.4, instead of 6.6.0. What's happening? I installed Ubuntu deb on Ubuntu and it's 6.6.0 there
Azd325 commented on 2020-01-16 15:05
@starkers Do you have a reason why we should do this?
starkers commented on 2020-01-16 15:03
Can you please add binutils
and fakeroot
as deps (for the build)
j.taala commented on 2019-12-03 04:04
Hey Azd325, good job on removing obsolete dep gconf. I've done a clean chroot build for the gitkraken PKGBUILD and note that 'gkt2', 'libcurl-gnutls', and 'rtmpdump' are also obsolete/unneeded. Cheers, Jay.
Azd325 commented on 2019-06-19 11:43
j.taala commented on 2019-06-19 01:34
Hey Azd325, many thanks for providing this PKGBUILD.
Our team uses the standalone version gitkraken (https://release.gitkraken.com/linux-standalone/gitkraken-amd64.tar.gz).
Brightstar usb devices driver download. I've generally been cloning your AUR repo, making local changes (such as source url, adding conflict for your gitkraken package, etc.).
I would like to submit this modified PKGBUILD (for the standalone version of gitkraken) to the AUR as more of our users are migrating to arch-based distros and need to use the standalone version of gitkraken (and I want to make the transition as easy as possible).
Would you have any issues with this? Alternatively, do you have any plans to provide a AUR package for the gitkraken standalone?
Cheers,Jay.
Git Rebase in the Command Line
To begin your Git rebase in the terminal, you will likely start by running the git branch command to see a list of your local branches. In the example below, you can see the currently checked out branch is feature, along with two other branches: dev and production.
gt;In this example, let’s say you want to rewrite the two most recent commits from the feature branch onto the dev branch. Because the terminal lacks the immediate visual context of which commits exist on which branch, you will start by running the git log command followed by -2.
The commit named Additional sentence structure changes is where the feature branch originally branched off from the dev branch. This will change after the Git rebase is completed, so take note.
From here, you can hit q to exit the log.
To proceed with the rebase, you will use the git rebase command followed by the name of your target branch—in this case, the dev branch—to move your changes from one branch to another.
With that, the rebase is complete! Git has re-written the commits from your feature branch onto the most recent commit on the dev branch.
Because you’re unable to immediately verify the success of the rebase in the CLI, as you can with GitKraken, you should double-check by running git log -2 again. And voila! We now have a new base commit on the feature branch: Finalize release date.
GitTip: feeling like you’ve got the hang of rebase? Graduate onto Git interactive rebase.
Stop wasting time on commands and get more time back in your day to….do whatever you want. Download the cross-platform GitKraken Git client free today.
Gitkraken For Linux Mint
Gitkraken Linux Crack
Still not convinced? We've a two-part tutorial special comparing rebasing in GitKraken with rebasing in the command line. Spoiler alert: in part 2, you'll even see what happens when a conflict occurs.