Lazygit-py

Latest version: v0.44.1

Safety actively analyzes 687767 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 26

20.04

0.44.1

What's Changed
Enhancements πŸ”₯
* With stacked branches, create fixup commit at the end of the branch it belongs to by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3892
* Add options for disabling switching to the Files panel after popping or applying a stash by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3913
Fixes πŸ”§
* Fix crash when viewing the divergence of a branch which is up to date with its upstream by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3918
Performance improvements πŸ“Š
* Improve performance with large numbers of untracked or modified files by parthokunda in https://github.com/jesseduffield/lazygit/pull/3919
I18n 🌎
* Update language files from Crowdin by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3898

New Contributors
* parthokunda made their first contribution in https://github.com/jesseduffield/lazygit/pull/3919

**Full Changelog**: https://github.com/jesseduffield/lazygit/compare/v0.44.0...v0.44.1

0.44.0

What's Changed

Lots of great changes in this release. Thanks to everybody who contributed!

Enhancements πŸ”₯
* Per-repo config files (and reloading of edited config files) by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3787
* In addition to the global config file you can now create repo-specific config files inΒ `<repo>/.git/lazygit.yml`. Settings in these files override settings in the global config file. In addition, files calledΒ `.lazygit.yml`Β in any of the parent directories of a repo will also be loaded; this can be useful if you have settings that you want to apply to a group of repositories.
* We now also automatically apply (most) config changes without the need to restart lazygit
* Easily view diff across range of commits by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3869
* If you select a range of commits, we now show the diff across the range (inclusive). This makes it easy to see the total changes across a number of commits. Likewise, if you press enter when a range of commits are selected, we will show the changed files for the range.

https://github.com/user-attachments/assets/6646c78b-5770-41c1-93b9-5442d32404de



* Support hyperlinks from pagers by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3825
* If you're using delta as a pager (which I highly recommend trying), you can now click on line numbers to go to that line in your editor by using the following config:
yaml
git:
paging:
colorArg: always
pager: delta --paging=never --line-numbers --hyperlinks --hyperlinks-file-link-format="lazygit-edit://{path}:{line}"


https://github.com/user-attachments/assets/75fef6c4-d437-4595-ab00-b8990215cfed



* Switch to Files panel after popping/applying a stash by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3888
* This is a nice quality of life improvement. You generally want to go straight to the files panel after you pop or apply from the stash
* Ask to auto-stage unstaged files when continuing a rebase after resolving conflicts by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3879
* Another quality of life improvement: often you resolve some conflicts, then make another couple changes, then in lazygit you say to continue and you get an error saying there are unstaged changes. Now instead of showing an error, lazygit asks if you want to stage those changes and continue.
* Offer autostash option when creating new branch by brandondong in https://github.com/jesseduffield/lazygit/pull/3871
* Another great quality of life improvement
* Allow using shell aliases in interactive custom commands by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3793
* Switch tabs with panel jump keys by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3794
* If you've already been using the number keys (1-5) for jumping to specific side panels, you'll be pleased to know that you can now also use those keys for jumping to tabs within a side panel. E.g. to go to the reflog panel, you can now press 4 to jump to the commits panel, then 4 again to go to the reflog tab.
* Rename "Custom Command" to "Shell Command" by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3800
* There are two ways of invoking a 'custom' command in Lazygit: first by pre-defining a command in your config, and second by pressing ':' and typing in the command directly. We referred to both of these as 'custom commands' which was confusing. We now refer to the second approach as invoking a 'shell command'.
* Improve template placeholders for custom commands by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3809
* Now you can use `SelectedCommit` to refer to the selected commit regardless of which commits panel you're in (local commits, reflog, etc)
* Likewise, you can use `SelectedPath` whether you're in the files panel or the commit-files panel.
* feat(custom command): support multiple contexts within one command by yam-liu in https://github.com/jesseduffield/lazygit/pull/3784
* You can now use a comma-separated list of contexts for which a custom command can be invoked. For example:
yaml
customCommands:
- description: 'Add empty commit'
key: 'E'
context: 'commits,files'

* Improve mouse support for commit message panel by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3836
* Make auto-staging resolved conflicts optional by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3870
* If you set `git.autoStageResolvedConflicts` to false in your config, lazygit will no longer auto-stage files in which you've resolved merge conflicts.
* Allow using `<`/`>` and `,`/`.` in sticky range select mode in patch explorer by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3837
* Add Zed editor support to editorPreset by susl in https://github.com/jesseduffield/lazygit/pull/3886

Fixes πŸ”§
* Allow GPG reword for last commit by Neko-Box-Coder in https://github.com/jesseduffield/lazygit/pull/3815
* Don't exit app when GetRepoPaths call fails during startup by ppoum in https://github.com/jesseduffield/lazygit/pull/3779
* Fix lack of icon when extension isn't lowercase by hasecilu in https://github.com/jesseduffield/lazygit/pull/3810
* Fix redraw bug (stale content) in commits view by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3783
* Fix line coloring when using the delta pager by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3820
* Fix pressing escape after clicking in diff view by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3828
* Fix fast-forward issue caused by a conflicting tag name Neko-Box-Coder in https://github.com/jesseduffield/lazygit/pull/3807
* Fix range select -> stage failure when deleted file is already staged by brandondong in https://github.com/jesseduffield/lazygit/pull/3631
* Scroll views up if needed to show all their content by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3839
* Fix crash when filtering commits by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3838
* Fix cancelled autostash resulting in stuck inline status by brandondong in https://github.com/jesseduffield/lazygit/pull/3860
* Don't allow opening a menu while the search or filter prompt is open by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3878

Maintenance βš™οΈ
* Reapply "Check for fixup commits on CI" by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3745
* Some cleanups for APIs related to contexts by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3808
* Improve fixup commits script by jesseduffield in https://github.com/jesseduffield/lazygit/pull/3853
* Fix linter warnings by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3854
* Add codespell support (config, workflow to detect/not fix) and make it fix few typos by yarikoptic in https://github.com/jesseduffield/lazygit/pull/3751
* Get rid of a lot of error return values by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3890
* Add a readme file for the JSON files in pkg/i18n/translations by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3781

New Contributors
* yam-liu made their first contribution in https://github.com/jesseduffield/lazygit/pull/3784
* ppoum made their first contribution in https://github.com/jesseduffield/lazygit/pull/3779
* Neko-Box-Coder made their first contribution in https://github.com/jesseduffield/lazygit/pull/3815
* yarikoptic made their first contribution in https://github.com/jesseduffield/lazygit/pull/3751
* susl made their first contribution in https://github.com/jesseduffield/lazygit/pull/3886

**Full Changelog**: https://github.com/jesseduffield/lazygit/compare/v0.43.1...v0.44.0

0.43.1

<!-- Release notes generated using configuration in .github/release.yml at v0.43.1 -->

What's Changed
Fixes πŸ”§
* Fix language auto detection by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3744


**Full Changelog**: https://github.com/jesseduffield/lazygit/compare/v0.43.0...v0.43.1

0.43.0

What's Changed

Thanks to all contributors who helped make this release happen! There's a lot of first-time contributors on this release as well so kudos to you all.

There's quite a few things in this release. I'm going to single out a couple that have changed my workflow.

Base branch stuff

https://github.com/user-attachments/assets/9f50824a-6221-4ca0-9cf3-a4d45cc43262

Easier rebase onto base branch

_(Add command to rebase onto base branch by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3615)_

When my feature branch gets out of date with the main branch, I like to rebase it onto the main branch. Up until now, that's required:
* Navigating to the main branch
* Pressing 'f' to fast-forward it onto its upstream branch
* Pressing 'r' to rebase the checked-out branch onto the main branch

That takes too long! Now you can just press 'r' followed by 'b' to rebase onto the base branch (which defaults to origin/main).

See the divergence count from the base branch

_(Divergence from base branch display by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3613)_

You can now also configure to see the divergence from a branch and its base branch with the following config:
yml
gui:
showDivergenceFromBaseBranch: arrowAndNumber or 'onlyArrow'


This shows the divergence count in blue, next to the yellow count of divergence from the upstream branch. This is admittedly noisy, so it's an opt-in feature. But I think the noise is worth it.

If you set the config value to 'onlyArrow' it's a lot less noisy:

<img width="891" alt="image" src="https://github.com/user-attachments/assets/470cb003-8fc6-4a72-aa04-6e228c49f381">

See detailed divergence from base branch

_(Add command to show divergence from base branch as a left-right log by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3614)_

By pressing 'u' then 'b' on a branch you can see the divergence view for that branch compared to its base branch

Improved 'Find commit for fixup' feature

_(Improve the "Find base commit for fixup" command by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3602)_

'Find commit for fixup' is not a very catchy name for this feature but I can't think of anything better at the moment. Nevertheless! The idea is that you often want to know for a given set of changes, which commit ought they be included in? Just press `ctrl+f` when in the files panel and lazygit will jump the cursor to the appropriate commit to fixup.

With this release, the feature is smarter and more lenient so it's more likely to find you a match. If you haven't tried this out you should really give it a go!


https://github.com/user-attachments/assets/220e4190-b631-40a5-b8dc-7d1a6116ab09


Other Enhancements πŸ”₯
* Add Squash merge by noahfraiture in https://github.com/jesseduffield/lazygit/pull/3566
* Now when you press `shift+m` you get the option to do a regular merge or a squash merge. If you already have muscle memory for regular merge; don't worry: it's the same sequence of keypresses.
* Improve "Find base commit for fixup" command when there are changes for master commits by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3645
* Allow setting the similarity threshold for detecting renames by isti115 in https://github.com/jesseduffield/lazygit/pull/3025
* For this, press ')' and '(' to increase/decrease the similarity threshold.


https://github.com/user-attachments/assets/a85825b8-9110-4090-ba89-ba8221cbc7a8


* Reduce memory consumption when loading large number of commits by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3687
* 2-6x less memory usage when dealing with lots of commits. HUGE improvement.
* Focus on local commits view after moving code into new commit by AzraelSec in https://github.com/jesseduffield/lazygit/pull/3577
* Add property outputTitle to CustomCommand by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3579
* Add user config `gui.expandedSidePanelWeight` by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3623
* You can now increase the height of the selected side panel when you've configured the accordion effect
yml
gui:
expandFocusedSidePanel: true
expandedSidePanelWeight: 3


<img width="891" alt="image" src="https://github.com/user-attachments/assets/8a47bd1c-67b0-4d2f-a885-56e6a07ece12">

* Support range select for amending commit attributes by AzraelSec in https://github.com/jesseduffield/lazygit/pull/3587
* This lets you select a range of commits and update the author / set the co-author on all of them at once.

https://github.com/user-attachments/assets/2d3e15a9-4acc-4b81-b0e2-a34490ad77ad

* Show "exec" todos in the list of rebase todos by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3654
* Search the model instead of the view in the commits panel by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3642
* Add prompt to the remote branch checkout menu by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3652
* Always show the "Discard unchanged changes" menu item by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3683
* Show current value in menus by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3628
* Add command to paste commit message from clipboard by WaterLemons2k in https://github.com/jesseduffield/lazygit/pull/3676
* Stagger popup panels by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3694
* Make commit author length configurable by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3688 (initial implementation by anikiforov)
* Make opening git difftool more consistent by part22 in https://github.com/jesseduffield/lazygit/pull/3691
* Update tracking behaviour for branches created from remote branches by part22 in https://github.com/jesseduffield/lazygit/pull/3712
* Allow setting a default name when creating new branches by elliotcubit in https://github.com/jesseduffield/lazygit/pull/3487
* Add Token credential request handling by gmlexx in https://github.com/jesseduffield/lazygit/pull/3647
* Switch between multiple log views by mkock in https://github.com/jesseduffield/lazygit/pull/3354
* Faster startup by jwhitley in https://github.com/jesseduffield/lazygit/pull/3284
* Extend icon coverage on remotes and file extensions by hasecilu in https://github.com/jesseduffield/lazygit/pull/3484
* Add nerdfont icons for .bicep & .bicepparam files by scottmckendry in https://github.com/jesseduffield/lazygit/pull/3053

Fixes πŸ”§
* Fix tooltip for fixup command by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3601
* Fix pushing to branch when upstream not stored locally by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3619
* (3618) Fix pushing a branch to remote with a different name causing error by JordanllHarper in https://github.com/jesseduffield/lazygit/pull/3630
* Fix secondary window resize by AzraelSec in https://github.com/jesseduffield/lazygit/pull/3637
* Fix truncation of branch names containing non-ASCII characters by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3685
* Fix duplicate keybinding suggestions in status bar after switching repos by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3660
* Fix PTY layout problems by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3658
* Fix custom patch operations for added files by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3684
* Improve render performance by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3686
* Fix wrong highlight in staging panel when entering file with only staged changes by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3667
* Always reapply filters on filtered views when model changes, even inactive ones by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3697
* Turn off the highlight of the suggestions panel when it loses focus by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3696
* Fix running lazygit with a language other than English on Windows by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3705
* Fix multi selection stage/discard not working for files with substrings by brandondong in https://github.com/jesseduffield/lazygit/pull/3599
* Only add commit prefix if branch name matches regex pattern by phaze-ZA in https://github.com/jesseduffield/lazygit/pull/3703
Maintenance βš™οΈ
* Add default lazygit config generation in Config.md from JSON schema by karimkhaleel in https://github.com/jesseduffield/lazygit/pull/3565
* Remove hint about Config.md from PR template by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3578
* Add `copyloopvar` to enabled linters by kyu08 in https://github.com/jesseduffield/lazygit/pull/3586
* Add `lint` to make target by kyu08 in https://github.com/jesseduffield/lazygit/pull/3593
* Delete the TODO comment about enabling `goconst` in the future from `.golangci.yml` by kyu08 in https://github.com/jesseduffield/lazygit/pull/3596
* Pin golangci version to 1.58 by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3611
* Improve branch and reflog loading when sorting branches by date by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3609
* Fix boolean config keys not appearing in the generated Config.md by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3622
* Make profiling easier by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3634
* Update `rebase_onto` demo test to match new the rebase menu title by AzraelSec in https://github.com/jesseduffield/lazygit/pull/3636
* Include demos when running integration tests on CI by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3640
* Fix reporting of unexpected selections in integration tests by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3662
* Convert TranslationSets to json by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3649
* Fix go generate on windows by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3706
* Update translations from Crowdin by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3707
* Bump `actions/checkout`, `actions/setup-go`, `actions/cache/restore`, `actions/cache/save` by kyu08 in https://github.com/jesseduffield/lazygit/pull/3594
* Check for fixup commits on CI by jesseduffield in https://github.com/jesseduffield/lazygit/pull/3742

Docs πŸ“–
* Upgrade to Alpine Linux v3.19 by fossdd in https://github.com/jesseduffield/lazygit/pull/3541
* Add flox install by bryanhonof in https://github.com/jesseduffield/lazygit/pull/3656

New Contributors
* JordanllHarper made their first contribution in https://github.com/jesseduffield/lazygit/pull/3630
* anikiforov made their first contribution in https://github.com/jesseduffield/lazygit/pull/3625
* WaterLemons2k made their first contribution in https://github.com/jesseduffield/lazygit/pull/3676
* noahfraiture made their first contribution in https://github.com/jesseduffield/lazygit/pull/3566
* fossdd made their first contribution in https://github.com/jesseduffield/lazygit/pull/3541
* scottmckendry made their first contribution in https://github.com/jesseduffield/lazygit/pull/3053
* elliotcubit made their first contribution in https://github.com/jesseduffield/lazygit/pull/3487
* bryanhonof made their first contribution in https://github.com/jesseduffield/lazygit/pull/3656
* gmlexx made their first contribution in https://github.com/jesseduffield/lazygit/pull/3647
* mkock made their first contribution in https://github.com/jesseduffield/lazygit/pull/3354
* phaze-ZA made their first contribution in https://github.com/jesseduffield/lazygit/pull/3703
* hasecilu made their first contribution in https://github.com/jesseduffield/lazygit/pull/3484

**Full Changelog**: https://github.com/jesseduffield/lazygit/compare/v0.42.0...v0.43.0

Shameless Plug

I (Jesse) quit my day job and co-founded Subble, a startup that helps your company manage its SaaS subscriptions (discovery of subscriptions, onboarding/offboarding etc) to save you time and money. Check it out! https://www.subble.com/

0.42.0

<!-- Release notes generated using configuration in .github/release.yml at master -->

It's time once again for a Lazygit release! This one is not as colossal as the prior release (and we intend to have smaller, more frequent releases in future) but there are plenty of good improvements here.

Thanks to all contributors who helped make this release happen! There's a lot of first-time contributors on this release as well so kudos to you all.

Thanks as usual to the wonderful stefanhaller for creating/reviewing many of these changes, and thanks to karimkhaleel who has also stepped up to help out with reviews.

What's Changed

Enhancements πŸ”₯
* Make spinner animation configurable by belyakov-am in https://github.com/jesseduffield/lazygit/pull/3463
* Keep the same commit selected when exiting filtering mode by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3416
* Make URLs in confirmation panels clickable, and underline them by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3446
* Allow viewing all branches git log in status view by default oakio in https://github.com/jesseduffield/lazygit/pull/3309
* Drop update-ref todos pointing to head by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3456
* Add config options for length of commit hash displayed in commits view by oliviaBahr in https://github.com/jesseduffield/lazygit/pull/3505
* Show commit graph in divergence view by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3537
* Add commitPrefix config for defining a default commit message prefix across all projects by duckbrain in https://github.com/jesseduffield/lazygit/pull/3291
* Improve `nvim-remote` (neovim) editor mode by cmoog in https://github.com/jesseduffield/lazygit/pull/3508
* Delete and edit custom commands history items by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3534
* Support externalDiffCommand in diffing mode by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3519

Fixes πŸ”§
* Correctly request force-pushing in a triangular workflow by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3528
* Fix and speed-up stashing partial files for git version >= 2.35.0 by dsolerh in https://github.com/jesseduffield/lazygit/pull/3569
* Improve delta pager performance by setting the `TERM` env variable by bash in https://github.com/jesseduffield/lazygit/pull/3420
* Fix deleting update ref todos by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3439
* Fix crash when filtering the keybindings menu by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3450
* Fix excluding files in submodules or worktrees by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3432
* Fix rewording signed commits when the log.showsignature git config is true by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3431
* Better support for terminal based pinentry programs by eldios in https://github.com/jesseduffield/lazygit/pull/3478
* Fix amend-to operation not working with non-HEAD merge commit by brandondong in https://github.com/jesseduffield/lazygit/pull/3510
* Fix clicking in status side panel by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3547
* Fix loading commits with very long subjects by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3533

Maintenance βš™οΈ
* Migrate null keybindings to `<disabled>`, and remove our yaml fork by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3459
* Replace min/max helpers with built-in min/max by Juneezee in https://github.com/jesseduffield/lazygit/pull/3482
* standardize commit hash commit sha by pikomonde in https://github.com/jesseduffield/lazygit/pull/3398
* Bump go version to 1.22 by jesseduffield in https://github.com/jesseduffield/lazygit/pull/3574
* Simplify error handling by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3502
* Use errors.New instead of fmt.Errorf with no parameters by ChengenH in https://github.com/jesseduffield/lazygit/pull/3523
* chore: fix some comments and typos by knowmost in https://github.com/jesseduffield/lazygit/pull/3535
* Fix deadlock reporting by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3550
* Only run code coverage report on non-fork branches by jesseduffield in https://github.com/jesseduffield/lazygit/pull/3571
* pkg: fix some comment by HongKuang in https://github.com/jesseduffield/lazygit/pull/3481
* sponsors.yml: Create PR instead of trying to push to a protected branch by SachinVin in https://github.com/jesseduffield/lazygit/pull/3493
* pkg: fix some typos by thirdkeyword in https://github.com/jesseduffield/lazygit/pull/3364

Docs πŸ“–
* Update interactive rebase demo by jesseduffield in https://github.com/jesseduffield/lazygit/pull/3392
* Update Busy.md by eltociear in https://github.com/jesseduffield/lazygit/pull/3433
* Fix schema link in Config.md by stefanhaller in https://github.com/jesseduffield/lazygit/pull/3451

New Contributors
* bash made their first contribution in https://github.com/jesseduffield/lazygit/pull/3420
* eltociear made their first contribution in https://github.com/jesseduffield/lazygit/pull/3433
* belyakov-am made their first contribution in https://github.com/jesseduffield/lazygit/pull/3463
* HongKuang made their first contribution in https://github.com/jesseduffield/lazygit/pull/3481
* eldios made their first contribution in https://github.com/jesseduffield/lazygit/pull/3478
* oakio made their first contribution in https://github.com/jesseduffield/lazygit/pull/3309
* pikomonde made their first contribution in https://github.com/jesseduffield/lazygit/pull/3398
* SachinVin made their first contribution in https://github.com/jesseduffield/lazygit/pull/3493
* github-actions made their first contribution in https://github.com/jesseduffield/lazygit/pull/3498
* thirdkeyword made their first contribution in https://github.com/jesseduffield/lazygit/pull/3364
* brandondong made their first contribution in https://github.com/jesseduffield/lazygit/pull/3510
* ChengenH made their first contribution in https://github.com/jesseduffield/lazygit/pull/3523
* oliviaBahr made their first contribution in https://github.com/jesseduffield/lazygit/pull/3505
* knowmost made their first contribution in https://github.com/jesseduffield/lazygit/pull/3535
* duckbrain made their first contribution in https://github.com/jesseduffield/lazygit/pull/3291
* dsolerh made their first contribution in https://github.com/jesseduffield/lazygit/pull/3569
* cmoog made their first contribution in https://github.com/jesseduffield/lazygit/pull/3508

**Full Changelog**: https://github.com/jesseduffield/lazygit/compare/v0.41.0...v0.42.0

Page 1 of 26

Β© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.