How to install GitEye GUI Git client on Ubuntu 22.04 | 20.04 LTS

GitEye is a graphical Git client for Windows, OSX, and Linux available in both 32-bit and 64-bit versions. Here we learn the steps and commands to install GitEye on Ubuntu 22.04 Jammy JellyFish and Ubuntu 20.04 Focal Fossa.

CollabNet is the developer behind GitEye to offer a desktop application for easily but graphically managing Git projects with functions of distributed version control in a graphical interface. Apart from GitEye, CollabNet also offers products related to cloud and ALM (Application Lifecycle Management).

If we talk about the features, GitEye offers GUI for managing changes and conflicts. With it, the user can commit selected, modified files locally or also upload them to a repository. Agile development tools such as bug trackers (Bugzilla, Trac, and JIRA), continuous integration systems (Jenkins), scrum backlogs, and code review tools (Gerrit) all integrate with GitEye.

CollabNet is not alone that offering GUI clients for GIT, there are few other well-known in this area here is the list of top GIT GUI clients for Windows, Linux, and macOS.

 

Steps to install GitEye on Ubuntu 22.04 or 20.04 LTS

The steps given here are applicable for other operating systems such as Debian, Linux Mint, POP OS, MX Linux, and more…

1. Requirements

Here are a few things that should be on your system before going further in the tutorial

• Ubuntu 20.04/22.04
• Oracle or OpenJDK Java 8 or newer installed
• 1 GB of available RAM is recommended.

 

2. Install OpenJDK java on Ubuntu 22.04 |20.04

As we need java installed on our system to run the GitEye properly, hence, first install the same using the given commands:

sudo apt update

sudo apt install default-jdk

 

3. Download GitEye for Linux

GitEye is not available through the default system repository of Ubuntu focal or Jammy, hence we need to download it manually. Open the browser and visit its website, here is the link for that.

There are two versions of this GIT GUI client – one is for 32-bit and the other to support 64-bit systems. Download the one as per your Linux OS, however, the latest Ubuntu Distros are only 64-bit, hence go for that.

Download GitEye for Linux

 

4. Unzip the compressed file

Open the command Terminal. The file you got on your system will be in zipped format, hence first we have to unzip it to extract GitEye executable file and then move it to some secure directory.

sudo apt install unzip

Whatever we download using the browser goes into the Downloads folder, hence switch to that:

cd Downloads

Check the zipped file is present there:

ls

If the file is there, then create a directory using the given command.

sudo mkdir /opt/giteye

Now, we have a directory under /opt for GitEye; move the extracted executable file there.

sudo unzip GitEye-*-linux.x86_64.zip -d /opt/giteye

5. Launch GitEye on Ubuntu 22.04 | 20.04

Once you have followed the above steps, we can start the Git Eye using the command terminal.

/opt/giteye/./GitEye

However, if you don’t want to add the whole path again and again to start the application then simply add its folder in your system path.

echo 'export PATH="$PATH:/opt/giteye/"' >> ~/.bashrc

Reload bash

source ~/.bashrc

Now, on your Terminal regardless of directory run:

GitEye

To run in the Background, to free Terminal:

GitEye &

 

6. Create Desktop or Application launcher shortcut

Well, there will be no desktop shortcut by default on your system to access the application easily using the GUI. Hence, here we create the one manually. Follow the given steps.

Create shortcut:

nano ~/Desktop/Giteye.desktop

Add the following lines

[Desktop Entry]
Version=1.0
Type=Application
Name=GitEye
Comment=GIT GUI
Exec=/opt/giteye/./GitEye
Icon=/opt/giteye/icon.xpm 
Terminal=false
StartupNotify=false

Save the file Ctrl+O, hit the Enter key and then exit – Ctrl+X.

Copy the shortcut for Application launcher:

sudo cp ~/Desktop/Giteye.desktop /usr/share/applications/

Allow executing desktop shortcut

Create GitEye Ubuntu Desktop Linux shortcut

 

7. GitEye Dashboard on Linux

Now, you can run the and Add existing Git repository, Clone Git Repo, or create your own local one using the graphical user interface of the GitEye.

Launch GitEye on Ubuntu 22.04 20.04

 

Other Articles:

• How to install Git on AWS EC2 Amazon Linux 2
• Install Brew on Ubuntu 20.04 LTS Linux
• How to install Docker CE on Ubuntu 22.04 LTS Jammy Jellyfish

 

 

2 thoughts on “How to install GitEye GUI Git client on Ubuntu 22.04 | 20.04 LTS”

  1. Thank you for this article. I am Linux newbie and needed a GUI for Linux similar to SourceTree. This Guide was very helpful in letting me set up GitEye.

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.