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 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 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 make on Ubuntu The "make" program in Linux is used to compile and manage a set of source code applications and files. It allows developers to install and gather a range of apps via the terminal. It also controls and cuts down on the amount of time necessary for compilation. The basic objective of the make command
3 min read
How to Install Inkscape on Ubuntu? Create vector pictures, typically in Scalable Vector Graphics format, using the free and open-source Inkscape editor. Anyone who wants to make their artwork, whether they are just getting started or trying to be more creative, should use this excellent tool. It may be utilized anywhere because of it
2 min read
How to Install a New Package Manager in Linux Linux offers several package managers for software installation, updates, and maintenance. In Linux, every distribution comes with a package manager by default. The Debian distribution comes with APT(Advanced Package Tool), Red Hat, and its derivatives such as CentOS and Fedora use YUM package manag
4 min read
How to Install Sublime Text 3 in Windows? Written by a Google engineer sublime text is a cross-platform IDE developed in C++ and Python. It has basic built-in support for Python. Sublime text is fast and you can customize this editor as per your need to create a full-fledged Python development environment. You can install packages such as d
2 min read
How to install CLion IDE on Ubuntu CLion (pronounced "sea lion") is a Linux, macOS, and Windows C and C++ IDE that is integrated with the CMake build system. The GNU Compiler Collection (GCC) and Clang compilers, as well as the GDB debugger, LLDB, and Google Test, are all supported in the first edition. JetBrains' CLion is one of the
4 min read