Questions tagged [gitkraken]

GitKraken is a freemium, fully-featured, cross-platform Git desktop client for Windows, Mac & Linux.

GitKraken is a freemium, fully-featured, cross-platform Git desktop client for Windows, Mac & Linux.

GitKraken's main features include:

Visual interactions and hints

  • GitKraken makes commands and processes easy, fast, and intuitive. The interface equips you with a visual understanding of branching, merging and your commit history.

Cross-platform

  • GitKraken is built on , allowing it to run natively on Windows, Mac, and Linux desktop systems.

100% standalone

  • GitKraken works directly with your repositories with no dependencies. It is built with so you don't even need to install Git on your system.

Integrations

  • Full integration with:, (include self-hosted), and
  • Allows seeing branches owners with profile icons, managing remote branches and even management of pull requests all from a local UI, without needing to use the browser.

Other features:

  • Built-in merge tool
  • , and support
  • One-click undo & redo
  • File history and blame
  • Fast, intuitive search
  • View image diffs in app
  • Keyboard shortcuts

its latest release (7.2.0 from Tuesday August 4th, 2020) can be found directly here

Useful Links

420 questions
0
votes
1 answer

GitKraken how to reopen merged branch with the same name

I created the branch b1 from master. After some commites pull-request was created, approved, merged into master and deleted. But I still have b1 on local machine, which I dont't want to delete. And now I want to reopen branch with the same name b1…
EgoPingvina
  • 734
  • 1
  • 10
  • 33
0
votes
1 answer

Git error index file is too small and the upstream is gone

I am using GitKraken on Linux for a few years now. And it was working somehow fine so far. But yesterday suddenly I received a message from Gitkraken that they no longer provide a free access to the private repositories!! I was in a hurry and needed…
user_5
  • 498
  • 1
  • 5
  • 22
0
votes
0 answers

Gitkraken cannot connect to any provider

I want to clone a repo from Gitlab using Gitkraken. When clicking connect to Gitlab it says connecting for 0.5s and then reports Not Connected. The activity log says: [16:47:23] Request OAuth token from GitLab: started. [16:47:23] Request OAuth…
AndersG
  • 81
  • 7
0
votes
1 answer

Gitkraken / Github / git: creating new branch from a non parent branch

In my remote repository I have: Origin feature abc 20200801_branch_1 20200802_branch_2 . . abc develop I want to create a new branch feature/abc/20200811_mybranch with the data from feature/abc/develop. How can I do that?? Thanks!!
0
votes
1 answer

Can't connect GitKraken standalone version with GitHub

There is no GitHub option in GitKraken. There is GitHub Enterprise, GitLab, Bitbucket, Azure, Jira but no GitHub option in the preferences. Anyone has had a similar problem?
0
votes
1 answer

GitKraken push and pull order for my situation

I pull a remote branch, which name is test, and GitKraken create a local branch which name is same as the "test" remote branch. While I'm merging some other branches into local "test", GitKraken showed up arrow beside my local "test" branch because…
Gary Liao
  • 3
  • 3
0
votes
1 answer

How to remove an unpushed git commit while keeping other good commits after it?

Just discovered a commit was made to the wrong branch, but not pushed to origin. That same branch has had a lot of commits after it that have been pushed (by another developer). How do I bring over just that one un-pushed commit to another branch…
user2521295
  • 823
  • 2
  • 12
  • 23
0
votes
2 answers

GitKraken - Cannot redirect from www.gitlab.com to gitlab.com

I started to get that issue a couple of days ago but can't find out what's the real issue... Any idea? Cannot redirect from 'www.gitlab.com' to 'gitlab.com' Thanks for any help!
Emixam23
  • 3,854
  • 8
  • 50
  • 107
0
votes
2 answers

Gtk Failed to load module "pantheon-filechooser-module"

I tried to start Gitkraken on Gnome, but it says: Gtk-Message: Failed to load module "pantheon-filechoosser-module"
0
votes
1 answer

fatal: not a git repository - GitKraken: could not find a compatible repo

I moved my whole git project from on pc to another. and now my when i try to open it with gitKraken i get the erro "could't find a compatible repository". The folder has inside an .git file. when i run git -status i get the error "fatal:not a git…
Panagiss
  • 3,154
  • 2
  • 20
  • 34
0
votes
0 answers

GitKraken makes a commit with empty message is the message I typed in started with # symbol

Basically, the title. It only happens in one of my repositories, if I make a commit with a commit message starting with # like "#121: added new feature", when I press commit button, it makes a commit with an empty message. If I then edit the commit…
IntegerOverlord
  • 1,477
  • 1
  • 14
  • 33
0
votes
1 answer

why can't push in a second cloned repository?

i have a repository on bitbucket and i cloned it to my laptop as "Repo1" and there it is where i commit and push. From an instance of DigitalOcean i make pull requests. But, i cloned again the repository from bitbucket to my laptop as "Repo2" and i…
German
  • 192
  • 1
  • 11
0
votes
1 answer

Is it possible to revise the resolution to a merge conflict in git?

I am working on a tex file together with a collaborator using git (using gitkraken). We work on the same branch, and at some point there were some merge conflicts when one of us pushed our latest work onto that branch. Since then we have continued…
Peter
  • 101
  • 2
0
votes
1 answer

Split hunks with Gitkraken

After making changes to a tracked files in a Git repository, GitKraken allows you to view default hunks per file. You are given the option to Stage or Discard these hunks. git add --patch provides the option to split hunks into smaller hunks. I am…
buratino
  • 1,408
  • 2
  • 17
  • 40
0
votes
0 answers

Git graph: Gathering commits of branch

How can I get the graph of a multibranches Git revision history for which: commits of one branch are gathered together ordered by date, and therefore commits of all branches are are not ordered by date. Illustration: EXAMPLE 1 …