install GitHub Desktop on ubuntu

  1. Update Packages
    On your Ubuntu Linux, first, run the system update command that ensures all the available package updates are installed on it. Further, this command will also refresh the package index cache of the default package manager i.e APT
bash 复制代码
sudo apt update && sudo apt upgrade
  1. Add ShiftKey GPG Key
    As we know officially GitHub Desktop client app is not available for Linux systems including Ubuntu. Therefore, we are going for the project that is itself hosted on GiitHub -- known as GitHub Desktop -- The Linux Fork by ShiftKey.

So, on your Ubuntu terminal execute the given command that will add the GPG key of the project, so that we can use the repository offered by the developers of this fork on our system.

bash 复制代码
wget -qO - https://mirror.mwt.me/shiftkey-desktop/gpgkey | gpg --dearmor | sudo tee /etc/apt/keyrings/mwt-desktop.gpg > /dev/null
  1. Add GitHub Desktop repository on Ubuntu
    After adding the GPG key, let's add the repository that offers the GitHub Desktop fork packages to install it on Ubuntu 22.04 or 20.04. The benefit of using a repository method instead of its Debian packages bundled as executable binary is we can easily get the future updates of the application by just running the system update and upgrade command.
bash 复制代码
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/mwt-desktop.gpg] https://mirror.mwt.me/shiftkey-desktop/deb/ any main" > /etc/apt/sources.list.d/mwt-desktop.list'

Don't forget to run the system update command once again after adding the repository.

bash 复制代码
sudo apt update
  1. GitHub Desktop installation on Ubuntu 22.04 | 20.04
    Finally, we have integrated all the necessary things we required to download GitHub Desktop App and start its installation on Ubuntu Linux. Now, let's use Ubuntu's APT, a built-in package manager, to finally get it on our Linux system.
bash 复制代码
sudo apt install github-desktop
  1. Install Flatpak
    Those who don't want to use the repository method can go for Flatpak universal package manager. However, unlike Snap, it is not available to use on Ubuntu by default. Therefore, we have to install it manually. Here are the commands to follow.
bash 复制代码
sudo apt install flatpak

Once the installation is completed, also add the Flathub remote repository that allows us to install various packages available in it on our Linux system.

bash 复制代码
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Completing the above two commands will enable the Flatpak successfully on our Ubuntu OS, however, it is important to reboot our system once. This helps this package manager to integrate itself properly into Linux.

bash 复制代码
sudo reboot
  1. Use Flatpak to install the Linux GitHub Desktop app
    So, after restarting the system let's use Flatpak to fetch and install the GitHub desktop release on Ubuntu 22.04 or 20.04 Linux via Flathub.

Here is the GitHub Desktop Flatpak Installation Command.

bash 复制代码
flatpak install -y flathub io.github.shiftey.Desktop
  1. Run Linux GitHub Desktop
    It doesn't matter which method you have used, to run the application simply click on the Activities link of the Taskbar or press the Windows key on your keyboard to search GitHub. As its icon appears click to run the same.
相关推荐
wrx繁星点点4 分钟前
事务的四大特性(ACID)
java·开发语言·数据库
小小娥子34 分钟前
Redis的基础认识与在ubuntu上的安装教程
java·数据库·redis·缓存
DieSnowK35 分钟前
[Redis][集群][下]详细讲解
数据库·redis·分布式·缓存·集群·高可用·新手向
光通信学徒1 小时前
ubuntu图形界面右上角网络图标找回解决办法
linux·服务器·ubuntu·信息与通信·模块测试
-XWB-1 小时前
【MySQL】数据目录迁移
数据库·mysql
老华带你飞1 小时前
公寓管理系统|SprinBoot+vue夕阳红公寓管理系统(源码+数据库+文档)
java·前端·javascript·数据库·vue.js·spring boot·课程设计
我明天再来学Web渗透1 小时前
【hot100-java】【二叉树的层序遍历】
java·开发语言·数据库·sql·算法·排序算法
Data 3172 小时前
Hive数仓操作(十一)
大数据·数据库·数据仓库·hive·hadoop
暗恋 懒羊羊2 小时前
Linux 生产者消费者模型
linux·开发语言·ubuntu
吱吱鼠叔2 小时前
MATLAB数据文件读写:2.矩阵数据读取
数据库·matlab·矩阵