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
Is your feature request related to a problem? Please describe:
When working with git history in lazygit, I often need to analyze or share changes across multiple specific commits. Currently, I need to individually view or copy diffs for each commit separately. There's no way to copy diff of multiple commits.
Describe the solution you'd like:
I would like lazygit to support selecting multiple commits in the commits view and then:
Copy the combined diff of all selected commits to the clipboard
Open all selected commits in the configured difftool with a single command
Describe alternatives you've considered:
Writing shell scripts that extract diffs for specific commit ranges
Using git on the command line with commands like git difftool commit1..commit2, but this requires leaving lazygit
The text was updated successfully, but these errors were encountered:
Ah ok. You need to press enter to go into the diff to see its files, then you can type y and get a menu to copy the diff of either the selected file or all files.
I guess we could improve this to also offer the menu in the commits list, but the diff option would really be the only one that would be enabled in the menu.
Is your feature request related to a problem? Please describe:
When working with git history in lazygit, I often need to analyze or share changes across multiple specific commits. Currently, I need to individually view or copy diffs for each commit separately. There's no way to copy diff of multiple commits.
Describe the solution you'd like:
I would like lazygit to support selecting multiple commits in the commits view and then:
Describe alternatives you've considered:
git difftool commit1..commit2
, but this requires leaving lazygitThe text was updated successfully, but these errors were encountered: