Search
Close this search box.

GitKraken vs Tower

The increasing popularity of Git in the software industry has led to the introduction of numerous tools designed to make the version control experience faster and more intuitive. The most notable tool for enhancing a developer’s Git workflow is a graphical user interface (GUI). 

Most Git GUIs on the market today offer a variety of features for simplifying Git commands into quick actions; many also have a heavy focus on making collaboration easier. Here’s why the GitKraken Git GUI is more popular than Tower.

Compare Tower vs GitKraken Client

Features GitKraken Tower
Basic Git productivity features
1 license for Windows, Mac, & Linux installation
Connect to any Git repo including GitHub, GitLab, Bitbucket & Azure DevOps
Git LFS
Visual commit graph
1-click undo/redo
Command palette
Drag-and-drop to push and pull changes
Predictive merge conflict alerts
Merge conflict tool
In-app pull request management
Built-in text editor
Interactive rebase
Git hooks support
Git flow integration
Connect repos to Jira, Trello, GitKraken Boards, GitHub Issues & GitLab Issues
Team collaboration features
Flexible license management
Multiple profile support
Guaranteed support for paid customers

“GitKraken is exactly what I need because it makes the experience of using Git the same on all three of my build platforms (mac/win/linux) without having to fiddle around with submodules in an annoying way I can just click and say ‘go get it please'” – @larsiusprime

Linux Support

GitKraken ✅ | Tower ❌

As one of the only true cross-platform Git GUIs on the market, GitKraken Client is proud to offer Linux support. Tower, by comparison, cannot be used on Linux. 

Cross-Platform Consistency

GitKraken ✅ | Tower ❌

GitKraken Client offers a seamless and consistent experience regardless of which operating system you choose to utilize. This is possible because GitKraken Client is developed on Electron.

It is far from uncommon for individual developers working on a team to prefer different operating systems; one likes Mac while the other swears by Linux. Trust us, we get it. Having a tool that is OS-agnostic will allow you to train your team faster with less overhead and makes it much easier to collaborate with a colleague who prefers a different operating system. 

Furthermore, because the GitKraken team is only developing one cross-platform Git GUI, rather than three disparate tools specific to an OS, we have the ability to release product improvements and new features more frequently. 

Issue Tracking Integrations 

GitKraken ✅ | Tower ❌

Aside from the GitKraken Git GUI, no other Git clients offer robust integrations with the most-used issue tracking tools. Not a single one.

The GitKraken Git GUI integrates with the following issue trackers:

Users who utilize one of the above tools to manage their issues can accomplish the following actions directly from the GitKraken Git GUI: view, filter, and edit issues/cards, create branches tied to issues/cards, and create new issues/cards.

With its GitHub integration, GitKraken Client streamlines the process of managing GitHub repositories. This integration facilitates actions like cloning directly from GitHub repos, as well as adding remotes for GitHub.com and GitHub Enterprise repositories. Users can login to GitHub directly within GitKraken Client to easily manage all GitHub issues and pull requests.

Additionally, the GitHub SSH feature enhances security, allowing users to generate and add a GitHub SSH key directly within GitKraken Client. This integration makes GitKraken Client an even more powerful tool for teams using GitHub, providing an efficient and secure method for repo access and management.

This can be instrumental for developers looking to optimize their workflow with reduced context switching.

Tower, by comparison, does not offer integrations with the issue trackers listed above.

Pricing

GitKraken 👍 | Tower 👎

The pricing model for GitKraken Client is more flexible and affordable than the pricing model for Tower.

gitkraken-vs-tower-pricing

GitKraken Client offers a free license for use on publicly-hosted repositories; Tower does not offer a free version of their software.

Let’s compare this to Tower, which has no free version and charges $69 per year for their basic license, which is “ideal for single users.”

Tower Pricing

Even GitKraken’s most expensive license — GitKraken Enterprise — starts at just $8.95 per user per month (billed annually). Whether you’re a hobbyist, solo developer, or corporate team, GitKraken provides more features at a better price. Simple as that. 

Commit Graph UI

GitKraken 👍 | Tower 👎

Behold, the beautiful technicolor commit graph displayed by the GitKraken Git GUI

GitKraken Commit Graph

Electron public repo displayed via GitKraken

GitKraken Client’s commit graph was designed to make navigating your commit history as easy as possible, and does so by not only looking good, but by improving many readability issues found in other Git GUIs, like the Git Tower client.

The visibility offered by GitKraken is unparalleled, giving you the ability to quickly see all remote branches and activity on forked repositories.

Tower Commit Graph for Comparison

Electron public repo displayed via Tower

While Tower attempts to save space by condensing its graph, this can create a tangled mess of branches that are difficult to follow, and introduces issues with scanning commit messages and finding branch names by throwing them out of alignment.

In GitKraken Client, each branch of commits gets its own column in the graph and the branch names are listed in a column to the left. This makes locating a branch, following its commits, and finding commit messages much easier because all text is left-aligned, as one would expect when reading a long list. 

Additionally, GitKraken Client allows you to resize the graph to optimize your display for larger repos with numerous branches, always keeping the commits cleanly lined up. 

resizing graph

Working Copy & Project History in Graph:

GitKraken ✅ | Tower ❌

GitKraken Client’s graph allows users to see their work in progress (in GitKraken Client, this is called the WIP) inline with the rest of the project. This means you can view (and edit!) the contents of your WIP in the same view as you can view the changes in any other commit in your project history.

WIP in GitKraken

The Git Tower client, on the other hand, separates a user’s “Working Copy” into a separate tab. This forces developers to switch context and jump to a new display anytime they want to see how their code will influence the project as a whole. 

Tower Working Copy

Side by Side Diff

GitKraken ✅ | Tower ❌

GitKraken Client’s built-in Diff Tool is one of our users’ favorite features, giving you the ability to quickly see what has been added to or removed from a file. Our tool allows you to choose individual lines or hunks of a file to stage. 

GitKraken Client’s Diff Tool allows users to easily toggle between HunkInline, and Split views, and includes word diffing, syntax highlighting, arrows to move between change sets, and more. 

GitKraken diff-views

Drag and Drop Actions

GitKraken 👍 | Tower 👎

GitKraken Client and Tower both provide users the ability to perform drag-and-drop actions, though Tower’s functionality is a bit limited. 

With Tower, you can create, pull, push, and merge branches, and initiate interactive rebase (to be exact, for squashing, reordering, and fixup). In GitKraken Client, you can drag-and-drop to initiate Git interactive rebase or create a pull request (after setting up the integration to the related hosting service). 

While it is true that you can initiate an interactive rebase using drag-and-drop in the Git Tower client, the experience of performing this action is far less intuitive than in GitKraken.

First and foremost, Tower users cannot perform an interactive rebase, or any other previously mentioned drag-and-drop actions, while in “History View,” aka the view that shows you the history of all branches within the repository. This is the central graph that GitKraken displays in the main interface (where all of our drag-and-drop actions are possible).  

So, how do you initiate an interactive rebase using drag-and-drop in Tower? You must first select a branch in the left panel, which switches the graph’s context to focus only on that branch. Then you can drag-and-drop commits to squash, reorder, and fixup. However, only one of those operations can be done at a time for the selected commits. 

tower-interactive-rebase

Performing an interactive rebase in Tower

😅 It took us a while to figure this out, and Tower’s support documentation is lacking in the interactive rebase department and did not provide direction. Let’s compare the experience in GitKraken. 

Psst: Get clear step-by-step instructions on using the Interactive Rebase feature in GitKraken on our support site. 

In GitKraken Client, users can easily initiate an interactive rebase by dragging-and-dropping one branch onto another branch from the central commit graph without context switching or altering the interface. 

interactive-rebase-gitkraken

Performing an Interactive Rebase in GitKraken

Perform advanced Git actions, like interactive rebase, with confidence, speed, and ease with GitKraken, and fear rebase no more.

Another meaningful difference between Tower and the GitKraken Git GUI when it comes to drag-and-drop is accessibility. In GitKraken Client, you can perform a drag-and-drop action from our left panel, the central graph, and between the two. 

The ability to drag-and-drop between the graph and the left panel in the Git Tower client is extremely limited and not intuitive. For example, you can drag a commit — again, only when you have a specific branch selected in the left panel — onto the “Branches” header to create a new branch, or initiate a cherry-pick onto the same branch. Tower users do not have the ability to drag branches out of the graph, because drag-and-drop only works on commits when one branch is selected; this makes the operations you’re able to perform with drag-and-drop in Tower very limited.

tower-dnd-graph-to-left

Drag-and-drop functionality in Tower

Case in point: you are not able to drag a branch out of the graph onto another branch in the left panel to merge, rebase, etc, as you can do in GitKraken Client. 

gk-dnd-leftp-graph

Drag and Drop Functionality in GitKraken

Merge Conflict Resolution

GitKraken 👍 | Tower 👎

Both GitKraken Client and Git Tower offer tools for in-app merge conflict resolution, but that’s about where the similarities end. 

If you encounter a conflict when attempting to perform a merge in GitKraken Client, our tool will display the conflicting files in the right Commit Panel. Clicking on a conflicted file will open our merge conflict editor, showing the current branch on the left, the target branch on the right, and an output field at the bottom. 

GitKraken-merge-tool

From the tool, users can select all changes in a file, individual sections of changes, and even individual lines, all of which are displayed with an accompanying checkbox. Checking a box adds that piece of code to the output field, allowing you to easily see the options in context and decide which is preferable. Alternatively, paid users can edit in the output field directly. After you’ve resolved the conflict, simply save the output and commit your changes. On to the next step in your workflow. 

By comparison, the experience of resolving a merge conflict in the Git Tower client is extremely limited. The Tower team seems to agree, pushing people to use external merge and diff tools in place of their own. 

Tower advertises a “Conflict Wizard” which does, in fact, alert you when a conflict occurs between files. However, the tool is severely lacking in contextual information. In short, Tower gives you the option to either select one of the two conflicting files or combine them. 

Tower Merge Wizard

You aren’t able to review the code changes or pick and choose changes from multiple files without opening an external tool in Tower. Tower’s Conflict Wizard is really only helpful if you’re already sure that either “my version” or “their version” is what you want committed.

Free for Open Source:

GitKraken ✅ | Tower ❌

Not only does GitKraken offer a free trial of our paid licenses, we also offer a free version for use on publicly-hosted repositories. Our free license comes with the core Git GUI features.

GitKraken also offers our Pro license FREE to students and teachers through the GitHub Student Developer Pack.

Included Updates in Every Version:

GitKraken ✅ | Tower ❌

If you have a GitKraken subscription, regardless of what license you’re on or when you purchased, you will be prompted to update your application upon each new software release.

Through Tower 2.0, buyers were required to purchase an individual version. So Tower 1, Tower 2, etc. And when there was a new release, Tower customers could purchase the newest version at a 50% discount. 

Tower 50% Upgrade Discount

Banner from Tower website advertising upgrade pricing in March 2020.

While Tower is now exclusively offering their product via an annual subscription model, the confusing license structure of the past continues to most prominently affect their legacy customers. 

GitKraken avoids all of that confusion by making our software updates available to every user, no matter what license you purchased.

Plus, our frequent release cadence and humorous release notes are yet another area where we blow Tower out of the water. See our full release history via GitKraken Timelines.

Free Git Educational Content

GitKraken ✅ | Tower ❌

The GitKraken team is proud of the educational content we provide; it’s completely free and accessible to all. We don’t gate our content or ask for any contact information to access our materials and resources.

Checkout our extensive Git educational database featuring free videos, tutorials, cheat sheets, and more.

No doubt, Tower also has a thoughtful compilation of Git educational materials on its website, and the vast majority is offered for free.

However, if you want to download any of their cheat sheets, you’re required to submit your email address and subscribe to communications.

Tower Gated Content

GitKraken offers all of our learning Git video tutorials on our website and YouTube channel completely free of charge, no matter the experience level. By comparison, Tower charges for some of their educational content.

Tower Educational Fees

Tower advertising prices for educational packages on their website (March 2020)

Ready to make the switch? 

Now that we’ve made a convincing GitKraken Client vs Tower argument, we hope you will consider making the switch to GitKraken Git GUI.

GitKraken offers a consistent experience across all operating systems, unlike Tower, giving you and your team more flexibility.  

Visual Studio Code is required to install GitLens.

Don’t have Visual Studio Code? Get it now.