1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

support discarding submodule changes

This commit is contained in:
Jesse Duffield
2020-09-28 09:14:32 +10:00
parent ca437a6504
commit b8da166ab1
10 changed files with 174 additions and 76 deletions

View File

@ -271,11 +271,12 @@ type Modes struct {
}
type guiState struct {
Files []*commands.File
Branches []*commands.Branch
Commits []*commands.Commit
StashEntries []*commands.StashEntry
CommitFiles []*commands.CommitFile
Files []*commands.File
SubmoduleConfigs []*commands.SubmoduleConfig
Branches []*commands.Branch
Commits []*commands.Commit
StashEntries []*commands.StashEntry
CommitFiles []*commands.CommitFile
// FilteredReflogCommits are the ones that appear in the reflog panel.
// when in filtering mode we only include the ones that match the given path
FilteredReflogCommits []*commands.Commit