1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-09 13:47:11 +02:00

Add instructions for openSUSE

This commit is contained in:
Pavel Dostál 2023-06-12 08:21:34 +02:00
parent c410d26006
commit 1a2a301aa2
No known key found for this signature in database
GPG Key ID: 65BDCDAB70974BA9

View File

@ -174,6 +174,25 @@ Funtoo Linux has an autogenerated lazygit package in [dev-kit](https://github.co
sudo emerge dev-vcs/lazygit
```
### openSUSE
The lazygit package is currently built in [devel:languages:go/lazygit](https://build.opensuse.org/package/show/devel:languages:go/lazygit).
To install lazygit on openSUSE Tumbleweed run:
```sh
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/openSUSE_Factory/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
```
To install lazygit on openSUSE Leap run:
```sh
source /etc/os-release
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/$VERSION_ID/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
```
### FreeBSD
```sh