Open In App

How To Install “git-gui” on Linux?

Last Updated : 02 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Git is a FOSS (Free and Open Source Software) that is used for version control of any set of files, typically, the source code of software projects. Git is a version control system for recording changes in any group of files. During software development, it’s generally used to coordinate work among programmers who are working on source code together. Its goals include speed, data integrity, and support for scattered, non-linear operations. 

What is Git GUI?

Git GUI is software that provides a Graphical User Interface to git, making it easier for a user to visualize branches and commit history. Git GUI is a graphical user interface for Git written in Tcl/Tk.

It focuses on letting users make changes to their repository by establishing branches, conducting local merges, and fetching/pushing to remote repositories. 

Prerequisites:

A computer with an installation of any Linux distribution.

Procedure to install Git GUI

Step 1: Open the Linux Terminal, for example, using the shortcut Ctrl + Alt + T.

Step 2: Install git gui using apt-get by typing the following command in the terminal:

sudo apt-get install git-gui

 

Note: We may be prompted to type your password, and type Y to proceed with the installation.

Step 3: Verify that git-gui has been installed successfully by typing the following command:

git citool

 

Alternatively, we can also type:

git gui

If the installation was successful, the following window should open.

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads