How to install Sublime Merge in Ubuntu/Linux?
Last Updated :
21 Apr, 2025
If you want to use Git on Ubuntu OS for more advanced projects or applications, then one of the Best Git Clients should be used. This is known as the Subline Merge from the makers of Sublime Text.
But to Work on Sublime Merge on Ubuntu, you must first Install the Sublime Merge Application on the Ubuntu System. This article will demonstrate the Installation of Sublime Merge on Linux or Ubuntu.
What is a Sublime Merge Application?
Sublime Merge is a Git Client that enables the reading of a Git Repository to display the List of Submissions (Commits), the branches, and the differential of the most recent alterations. Modifications can be submitted (pushed) and retrieved (pulled) through the interface.
In a very concise manner and without making things complicated, Sublime Merge provides a lot of information about a repository. Using this interface to Push, Pull, Add, and Commit also makes managing branches simple because it is visually appealing to the user.
- Remote branches
- Local branches
- Stages and unstaged changes
- The difference between before and after staging a file.
- Mergetool
- Information specific to each file
- Changes specific to commits
How to Install Sublime Merge with Ubuntu Software?
Step 1: Open Ubuntu Software and search for Sublime Merge.

Step 2: Install Sublime Merge and wait for the installation to complete.

Step 3: Find it in your system and use it.

How to Install Sublime Merge on Ubuntu Terminal?
Now, you can Install Sublime Merge with Ubuntu Terminal itself. And to do so, there are two specific methods are present. Let us start with the Ubuntu System Package option.
Method 1: Install Sublime Merge on Terminal using APT
Step 1: Update your Ubuntu system packages.
Command: sudo apt update -y && sudo apt upgrade -y
Step 2: The Ubuntu Basic Repository does not have the Sublime Merge package. Therefore, you can add it to your Ubuntu System by importing the Sublime Merge Repository. And import the GPG Key.
Command 1: echo 'deb [signed-by=/usr/share/keyrings/sublime.gpg] https://download.sublimetext.com/ apt/stable/' | sudo tee -a /etc/apt/sources.list.d/sublime-text.list
Command 2: sudo wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/sublime.gpg
Step 3: Install Sublime merge.
Command: sudo apt install sublime-merge

Method 2: Install Sublime Merge on Terminal using SNAPS
Step 1: Install the Snap.
Command: sudo apt install snapd

Step 2: Install Sublime merge.
Command: sudo snap install sublime-merge --classic

How to Use Sublime Merge on Ubuntu?
Smerge, a Command-Line Tool included with Sublime Merge, allows users to manage repositories from the command line. Open repositories, do searches and merge files with this. It opens the Sublime merge window shown below.
smerge

To open a specific repository, go to that folder and use the command,
cd workspace/PythonCode
smerge .

Conclusion
There are several GUI-Based GIT Clients on the market nowadays, and Code Editors also offer the necessary features. However, We found Installation of Sublime Merge to be a beneficial tool for people who prefer Git Clients over the Git Command Line because of its appealing style and compact view.
Similar Reads
How to install Rider on Ubuntu?
Are you looking to install Rider on your Ubuntu system? Rider, the powerful IDE from JetBrains, is a popular choice for .NET developers seeking a robust development environment on Linux. In this guide, we will provide you with a step-by-step tutorial on how to install Rider on Ubuntu. Whether you ar
3 min read
How to Install and Use Neovim in Linux
Neovim, short for Neo-Vi Improved, is a fork of Vim (Vi-Improved) with the primary goal of enhancing the codebase. This improvement facilitates the easier implementation of APIs, enhances the user experience, and supports plugin development.Installation of Neovim in Linux Distribution Neovim is typi
4 min read
How to Install Sourcetree on Ubuntu
Managing repositories and tracking changes can sometimes be overwhelming, but with Sourcetree, developers can simplify version control and boost productivity. In this article, we will be installing the Sourcetree application on the Ubuntu system in a step-by-step process. What is Sourcetree?Sourcetr
4 min read
How to Install PyCharm in Ubuntu
PyCharm is one of the most popular Python-IDE used for performing scripting and executing Python programs. It supports a wide range of frameworks and has a lot of useful features like Code Completion and inspection, debugging process, and support for various programming frameworks such as Flask and
2 min read
How to Install Scala in Linux?
Prerequisite: Introduction to Scala Before, we start with the process of Installing Scala on our System. We must have first-hand knowledge of What the Scala Language is and what it actually does? Scala is a general-purpose, high-level, multi-paradigm programming language. It is a pure object-oriente
3 min read
How to install PhpStorm in Ubuntu?
Installing PhpStorm on Ubuntu can significantly enhance your web development experience by providing a powerful IDE tailored for PHP development. This guide will walk you through the simple steps to install PhpStorm on your Ubuntu system, ensuring you have all the tools you need to code efficiently
3 min read
How to Install RawTherapee on Ubuntu?
RawTherapee is application software that allows you to process images in raw image formats, such as those produced by many digital cameras. It is a subset of image editing processes intended specifically at non-destructive post-production of raw photos, with the primary goal of enhancing a photograp
2 min read
How to Install Clang on Ubuntu Linux?
Clang is a widely used open-source compiler front end for the C, C++, and Objective-C programming languages. It is known for its efficiency, modular architecture, and a strong focus on providing useful diagnostics for developers. Installing Clang on Ubuntu Linux involves using the package manager to
6 min read
How to Install Libreoffice on Ubuntu
'Libreoffice' is an open-source office suite, which is free to download and use. Also, it is accessible on multiple platforms so it is used by millions of people and organizations worldwide. LibreOffice enhances productivity, catering to both professional and personal requirements. The suite is bund
4 min read
How to Install LightZone on Ubuntu?
LightZone, unlike other photo editors that employ layers, allows you to create a stack of tools that can be reorganized, readjusted, turned off and on, and deleted at any moment.LightZone is one of the greatest free alternatives to Adobe Lightroom. It is cross-platform, which means it can be used on
2 min read