You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ If you're a mere mortal like me and you're tired of hearing how powerful git is
43
43
-[Solus Linux](#solus-linux)
44
44
-[Ubuntu](#ubuntu)
45
45
-[Funtoo Linux](#funtoo-linux)
46
+
-[Gentoo Linux](#gentoo-linux)
46
47
-[FreeBSD](#freebsd)
47
48
-[Conda](#conda)
48
49
-[Go](#go)
@@ -172,6 +173,30 @@ Funtoo Linux has an autogenerated lazygit package in [dev-kit](https://github.co
172
173
```sh
173
174
sudo emerge dev-vcs/lazygit
174
175
```
176
+
### Gentoo Linux
177
+
178
+
Lazygit is not (yet) in main Gentoo portage, however an ebuild is available in [cova overlay](https://github.com/cova-fe/cova-overlay/tree/main/dev-vcs/lazygit)
179
+
180
+
You can either add the overlay to your system and install lazygit as usual:
181
+
182
+
```sh
183
+
sudo eselect repository enable cova
184
+
sudo emaint sync -r cova
185
+
sudo emerge dev-vcs/lazygit
186
+
```
187
+
188
+
Or you can download the ebuild and install it manually; please consider the example below just as a suggestion to be adapted to your system.
189
+
190
+
```sh
191
+
su
192
+
LAZYGIT_VERSION="0.39.3"# Replace with the version you want from cova-overlay
193
+
cd /usr/overlay/dev-vcs/ # Replace your overlay path
0 commit comments