在Linux上使用图形界面的GitHub Desktop

自从在Windows上使用了GitHub Desktop后,想要在Linux上也使用GitHub Desktop。
但是根据官方的Issue :GitHub Desktop for Linux? · Issue #1525 · desktop/desktop
近期官方是不会推出Linux版本的。
幸运的是GitHub Desktop毕竟是 Electron实现的,比较容易跨平台。
有个第三方的仓库实现了Linux版本:shiftkey/desktop: Fork of GitHub Desktop to support various Linux distributions
有以下几个版本:

  • AppImage (.AppImage)
  • Debian (.deb)
  • RPM (.rpm)
  • Snap (.snap)

Ubuntu用户推荐使用snap进行安装:Install GitHub Desktop on Ubuntu using the Snap Store | Snapcraft

-> # sudo snap install github-desktop --beta --classic                    
github-desktop (beta) 2.1.0-linux1 from Snapcrafters installed

然后就可以使用了。
如果你下载安装deb包,那么需要先安装:

apt install gconf2 libappindicator1 gconf-service

在这里插入图片描述

发布了502 篇原创文章 · 获赞 145 · 访问量 48万+

猜你喜欢

转载自blog.csdn.net/zhangpeterx/article/details/95889349