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
You can download a binary release [here](https://github.com/jesseduffield/lazygit/releases)
15
+
You may need to grant execute permission via `chmod +x ./<filename>`.
16
+
You can move this file to your local /bin directory and rename to `lazygit` so that you can run it anywhere
17
+
(Easier-install coming soon)
18
+
19
+
### Via Go
12
20
In a terminal call this command:
13
21
`go get github.com/jesseduffield/lazygit`
14
22
(if you don't have Go installed, you can follow the installation guide [here](https://golang.org/doc/install).
15
23
16
-
Then just call `lazygit` in your terminal inside a git repository.
17
-
18
-
If you want, you can also add an alias for this with `echo "alias lg='lazygit'" >> ~/.zshrc` (or whichever rc file you're using).
19
-
20
24
Please note:
21
-
If you get an error claiming that lazygit cannot be found or is not defined, you may need to add `~/go/bin` to your $PATH (MacOS/Linux), or `%HOME%\go\bin` (Windows)
25
+
If you get an error claiming that lazygit cannot be found or is not defined, you may need to add `~/go/bin` to your $PATH (MacOS/Linux), or `%HOME%\go\bin` (Windows). Not to be mistaked for `C:\Go\bin` (which is for Go's own binaries, not apps like Lazygit)
22
26
23
27
### Ubuntu
24
28
Packages for Ubuntu 16.04 and up are available via Launchpad PPA.
@@ -31,6 +35,13 @@ sudo apt-get update
31
35
sudo apt-get install lazygit
32
36
```
33
37
38
+
39
+
## Usage
40
+
Call `lazygit` in your terminal inside a git repository.
41
+
If you want, you can also add an alias for this with `echo "alias lg='lazygit'" >> ~/.zshrc` (or whichever rc file you're using).
0 commit comments