From 6f7038c8277f82c32d2c23502f94fdf675ad07e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Fri, 8 Apr 2022 11:32:23 +0200 Subject: [PATCH 1/6] Add option to stash only unstaged files --- docs/keybindings/Keybindings_en.md | 2 +- pkg/commands/git_commands/stash.go | 4 ++++ pkg/gui/controllers/files_controller.go | 23 +++++++++++++++++++---- pkg/i18n/chinese.go | 2 +- pkg/i18n/dutch.go | 2 +- pkg/i18n/english.go | 10 +++++++--- pkg/i18n/polish.go | 2 +- 7 files changed, 34 insertions(+), 11 deletions(-) diff --git a/docs/keybindings/Keybindings_en.md b/docs/keybindings/Keybindings_en.md index 3a1d21fbd..7b53c0e34 100644 --- a/docs/keybindings/Keybindings_en.md +++ b/docs/keybindings/Keybindings_en.md @@ -124,7 +124,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct o: open file i: add to .gitignore r: refresh files - s: stash changes + s: stash all changes S: view stash options a: stage/unstage all enter: stage individual hunks/lines for file, or collapse/expand for directory diff --git a/pkg/commands/git_commands/stash.go b/pkg/commands/git_commands/stash.go index d20024aa9..26460bfa0 100644 --- a/pkg/commands/git_commands/stash.go +++ b/pkg/commands/git_commands/stash.go @@ -49,6 +49,10 @@ func (self *StashCommands) ShowStashEntryCmdObj(index int) oscommands.ICmdObj { return self.cmd.New(cmdStr).DontLog() } +func (self *StashCommands) StashAndKeepIndex(message string) error { + return self.cmd.New(fmt.Sprintf("git stash save %s --keep-index", self.cmd.Quote(message))).Run() +} + // SaveStagedChanges stashes only the currently staged changes. This takes a few steps // shoutouts to Joe on https://stackoverflow.com/questions/14759748/stashing-only-staged-changes-in-git-is-it-possible func (self *StashCommands) SaveStagedChanges(message string) error { diff --git a/pkg/gui/controllers/files_controller.go b/pkg/gui/controllers/files_controller.go index 764c9753b..e37cc0951 100644 --- a/pkg/gui/controllers/files_controller.go +++ b/pkg/gui/controllers/files_controller.go @@ -561,14 +561,21 @@ func (self *FilesController) createStashMenu() error { OnPress: func() error { return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashAllChanges) }, - Key: 's', + Key: 'a', }, { - DisplayString: self.c.Tr.LcStashStagedChanges, + DisplayString: self.c.Tr.LcStashAllChangesKeepIndex, OnPress: func() error { - return self.handleStashSave(self.git.Stash.SaveStagedChanges, self.c.Tr.Actions.StashStagedChanges) + return self.handleStagedStashSave() }, - Key: 'S', + Key: 'i', + }, + { + DisplayString: self.c.Tr.LcStashUnstagedChanges, + OnPress: func() error { + return self.handleStashSave(self.git.Stash.StashAndKeepIndex, self.c.Tr.Actions.StashUnstagedChanges) + }, + Key: 'u', }, }, }) @@ -603,6 +610,14 @@ func (self *FilesController) toggleTreeView() error { return self.c.PostRefreshUpdate(self.context()) } +func (self *FilesController) handleStagedStashSave() error { + if !self.helpers.WorkingTree.AnyStagedFiles() { + return self.c.ErrorMsg(self.c.Tr.NoTrackedStagedFilesStash) + } + + return self.handleStashSave(self.git.Stash.StashAndKeepIndex, self.c.Tr.Actions.StashStagedChanges) +} + func (self *FilesController) handleStashSave(stashFunc func(message string) error, action string) error { if !self.helpers.WorkingTree.IsWorkingTreeDirty() { return self.c.ErrorMsg(self.c.Tr.NoTrackedStagedFilesStash) diff --git a/pkg/i18n/chinese.go b/pkg/i18n/chinese.go index 2e4c4abc9..f9d8d26db 100644 --- a/pkg/i18n/chinese.go +++ b/pkg/i18n/chinese.go @@ -283,7 +283,7 @@ func chineseTranslationSet() TranslationSet { PressEnterToReturn: "按下 Enter 键返回 lazygit", LcViewStashOptions: "查看贮藏选项", LcStashAllChanges: "将所有更改加入贮藏", - LcStashStagedChanges: "将已暂存的更改加入贮藏", + LcStashAllChangesKeepIndex: "将已暂存的更改加入贮藏", LcStashOptions: "贮藏选项", NotARepository: "错误:必须在 git 仓库中运行", LcJump: "跳到面板", diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go index 7069734c9..ee42ab34a 100644 --- a/pkg/i18n/dutch.go +++ b/pkg/i18n/dutch.go @@ -246,7 +246,7 @@ func dutchTranslationSet() TranslationSet { PressEnterToReturn: "Press om terug te gaan naar lazygit", LcViewStashOptions: "bekijk stash opties", LcStashAllChanges: "stash-bestanden", - LcStashStagedChanges: "stash staged wijzigingen", + LcStashAllChangesKeepIndex: "stash staged wijzigingen", LcStashOptions: "Stash opties", NotARepository: "Fout: moet in een git repository uitgevoerd worden", LcJump: "ga naar paneel", diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 585da5e30..1df120dda 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -276,7 +276,8 @@ type TranslationSet struct { PressEnterToReturn string LcViewStashOptions string LcStashAllChanges string - LcStashStagedChanges string + LcStashAllChangesKeepIndex string + LcStashUnstagedChanges string LcStashOptions string NotARepository string LcJump string @@ -545,6 +546,7 @@ type Actions struct { OpenFile string StashAllChanges string StashStagedChanges string + StashUnstagedChanges string GitFlowFinish string GitFlowStart string CopyToClipboard string @@ -875,8 +877,9 @@ func EnglishTranslationSet() TranslationSet { LcResetTo: `reset to`, PressEnterToReturn: "Press enter to return to lazygit", LcViewStashOptions: "view stash options", - LcStashAllChanges: "stash changes", - LcStashStagedChanges: "stash staged changes", + LcStashAllChanges: "stash all changes", + LcStashAllChangesKeepIndex: "stash all changes and keep index", + LcStashUnstagedChanges: "stash unstaged changes", LcStashOptions: "Stash options", NotARepository: "Error: must be run inside a git repository", LcJump: "jump to panel", @@ -1128,6 +1131,7 @@ func EnglishTranslationSet() TranslationSet { OpenFile: "Open file", StashAllChanges: "Stash all changes", StashStagedChanges: "Stash staged changes", + StashUnstagedChanges: "Stash unstaged changes", GitFlowFinish: "Git flow finish", GitFlowStart: "Git Flow start", CopyToClipboard: "Copy to clipboard", diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go index 3ed130e05..53b67c476 100644 --- a/pkg/i18n/polish.go +++ b/pkg/i18n/polish.go @@ -208,7 +208,7 @@ func polishTranslationSet() TranslationSet { PressEnterToReturn: "Wciśnij enter żeby wrócić do lazygit", LcViewStashOptions: "wyświetl opcje schowka", LcStashAllChanges: "przechowaj zmiany", - LcStashStagedChanges: "przechowaj zmiany z poczekalni", + LcStashAllChangesKeepIndex: "przechowaj zmiany z poczekalni", LcStashOptions: "Opcje schowka", NotARepository: "Błąd: nie jesteś w repozytorium", LcJump: "przeskocz do panelu", From 1ae2dc994102841a189c85ca4c61b88d7cf82724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Thu, 14 Apr 2022 21:45:55 +0200 Subject: [PATCH 2/6] The four horsemen of stashing --- pkg/commands/git_commands/stash.go | 14 +++++++++- pkg/gui/controllers/files_controller.go | 36 +++++++++++++++---------- pkg/i18n/english.go | 6 +++++ 3 files changed, 41 insertions(+), 15 deletions(-) diff --git a/pkg/commands/git_commands/stash.go b/pkg/commands/git_commands/stash.go index 26460bfa0..71b8f655b 100644 --- a/pkg/commands/git_commands/stash.go +++ b/pkg/commands/git_commands/stash.go @@ -38,7 +38,6 @@ func (self *StashCommands) Apply(index int) error { } // Save save stash -// TODO: before calling this, check if there is anything to save func (self *StashCommands) Save(message string) error { return self.cmd.New("git stash save " + self.cmd.Quote(message)).Run() } @@ -53,6 +52,19 @@ func (self *StashCommands) StashAndKeepIndex(message string) error { return self.cmd.New(fmt.Sprintf("git stash save %s --keep-index", self.cmd.Quote(message))).Run() } +func (self *StashCommands) StashUnstagedChanges(message string) error { + if err := self.cmd.New("git commit -m \"WIP\"").Run(); err != nil { + return err + } + if err := self.Save(message); err != nil { + return err + } + if err := self.cmd.New("git reset --soft HEAD^").Run(); err != nil { + return err + } + return nil +} + // SaveStagedChanges stashes only the currently staged changes. This takes a few steps // shoutouts to Joe on https://stackoverflow.com/questions/14759748/stashing-only-staged-changes-in-git-is-it-possible func (self *StashCommands) SaveStagedChanges(message string) error { diff --git a/pkg/gui/controllers/files_controller.go b/pkg/gui/controllers/files_controller.go index e37cc0951..26c6e131f 100644 --- a/pkg/gui/controllers/files_controller.go +++ b/pkg/gui/controllers/files_controller.go @@ -559,21 +559,37 @@ func (self *FilesController) createStashMenu() error { { DisplayString: self.c.Tr.LcStashAllChanges, OnPress: func() error { - return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashAllChanges) + return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashAllChanges, self.c.Tr.NoFilesToStash) }, Key: 'a', }, { DisplayString: self.c.Tr.LcStashAllChangesKeepIndex, OnPress: func() error { - return self.handleStagedStashSave() + // if there are no staged files it behaves the same as Stash.Save + return self.handleStashSave(self.git.Stash.StashAndKeepIndex, self.c.Tr.Actions.StashAllChangesKeepIndex, self.c.Tr.NoFilesToStash) }, Key: 'i', }, + { + DisplayString: self.c.Tr.LcStashStagedChanges, + OnPress: func() error { + // there must be something in staging otherwise the current implementation mucks the stash up + if !self.helpers.WorkingTree.AnyStagedFiles() { + return self.c.ErrorMsg(self.c.Tr.NoTrackedStagedFilesStash) + } + return self.handleStashSave(self.git.Stash.SaveStagedChanges, self.c.Tr.Actions.StashStagedChanges, self.c.Tr.NoTrackedStagedFilesStash) + }, + Key: 's', + }, { DisplayString: self.c.Tr.LcStashUnstagedChanges, OnPress: func() error { - return self.handleStashSave(self.git.Stash.StashAndKeepIndex, self.c.Tr.Actions.StashUnstagedChanges) + if self.helpers.WorkingTree.AnyStagedFiles() { + return self.handleStashSave(self.git.Stash.StashUnstagedChanges, self.c.Tr.Actions.StashUnstagedChanges, self.c.Tr.NoFilesToStash) + } + // ordinary stash + return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashUnstagedChanges, self.c.Tr.NoFilesToStash) }, Key: 'u', }, @@ -582,7 +598,7 @@ func (self *FilesController) createStashMenu() error { } func (self *FilesController) stash() error { - return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashAllChanges) + return self.handleStashSave(self.git.Stash.Save, self.c.Tr.Actions.StashAllChanges, self.c.Tr.NoTrackedStagedFilesStash) } func (self *FilesController) createResetToUpstreamMenu() error { @@ -610,17 +626,9 @@ func (self *FilesController) toggleTreeView() error { return self.c.PostRefreshUpdate(self.context()) } -func (self *FilesController) handleStagedStashSave() error { - if !self.helpers.WorkingTree.AnyStagedFiles() { - return self.c.ErrorMsg(self.c.Tr.NoTrackedStagedFilesStash) - } - - return self.handleStashSave(self.git.Stash.StashAndKeepIndex, self.c.Tr.Actions.StashStagedChanges) -} - -func (self *FilesController) handleStashSave(stashFunc func(message string) error, action string) error { +func (self *FilesController) handleStashSave(stashFunc func(message string) error, action string, errorMsg string) error { if !self.helpers.WorkingTree.IsWorkingTreeDirty() { - return self.c.ErrorMsg(self.c.Tr.NoTrackedStagedFilesStash) + return self.c.ErrorMsg(errorMsg) } return self.c.Prompt(types.PromptOpts{ diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 1df120dda..b34dcf369 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -119,6 +119,7 @@ type TranslationSet struct { StashApply string SureApplyStashEntry string NoTrackedStagedFilesStash string + NoFilesToStash string StashChanges string MergeAborted string OpenConfig string @@ -276,6 +277,7 @@ type TranslationSet struct { PressEnterToReturn string LcViewStashOptions string LcStashAllChanges string + LcStashStagedChanges string LcStashAllChangesKeepIndex string LcStashUnstagedChanges string LcStashOptions string @@ -545,6 +547,7 @@ type Actions struct { Pull string OpenFile string StashAllChanges string + StashAllChangesKeepIndex string StashStagedChanges string StashUnstagedChanges string GitFlowFinish string @@ -720,6 +723,7 @@ func EnglishTranslationSet() TranslationSet { StashApply: "Stash apply", SureApplyStashEntry: "Are you sure you want to apply this stash entry?", NoTrackedStagedFilesStash: "You have no tracked/staged files to stash", + NoFilesToStash: "You have no files to stash", StashChanges: "Stash changes", MergeAborted: "Merge aborted", OpenConfig: "open config file", @@ -878,6 +882,7 @@ func EnglishTranslationSet() TranslationSet { PressEnterToReturn: "Press enter to return to lazygit", LcViewStashOptions: "view stash options", LcStashAllChanges: "stash all changes", + LcStashStagedChanges: "stash staged changes", LcStashAllChangesKeepIndex: "stash all changes and keep index", LcStashUnstagedChanges: "stash unstaged changes", LcStashOptions: "Stash options", @@ -1130,6 +1135,7 @@ func EnglishTranslationSet() TranslationSet { Pull: "Pull", OpenFile: "Open file", StashAllChanges: "Stash all changes", + StashAllChangesKeepIndex: "Stash all changes and keep index", StashStagedChanges: "Stash staged changes", StashUnstagedChanges: "Stash unstaged changes", GitFlowFinish: "Git flow finish", From bd9daf80b78789f28b151164b4baa45db3eb4898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Fri, 15 Apr 2022 08:03:25 +0200 Subject: [PATCH 3/6] Add integration tests --- pkg/commands/git_commands/stash.go | 2 +- .../stash/expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stash/expected/repo/.git_keep/config | 2 -- .../stash/expected/repo/.git_keep/index | Bin 281 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 1 - .../stash/expected/repo/.git_keep/logs/HEAD | 11 ++++---- .../repo/.git_keep/logs/refs/heads/master | 6 ++-- .../expected/repo/.git_keep/logs/refs/stash | 3 +- .../25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc | Bin 161 -> 0 bytes .../2e/fac8148440778cbddcd80ac7477981277dcffe | 1 - .../3b/29b35d4357f8e64cafd95140a70d7c9b25138a | Bin 162 -> 0 bytes .../4c/c838ea1466afc5be1d3bc3e7a937641ec84d7d | Bin 147 -> 0 bytes .../4f/9ff661c6c81b54d631d6d7c71399972e5c7a58 | 2 ++ .../6b/1f87e5b74cd77d755d213e0850f4de02b3cdce | Bin 0 -> 148 bytes .../81/f9f45d5eca6c23bf25b4a53172bcfb5ceb3963 | 2 ++ .../8c/3123f6f4cee663b57398072df088c6f2dfeb9b | 3 ++ .../8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 | Bin .../9f/2757166809c291c65f09778abb46cfcc4e4a0c | Bin 107 -> 0 bytes .../a6/ada9f3d895e751ec289c69913a02146c0ca844 | Bin 191 -> 0 bytes .../a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b | Bin 118 -> 0 bytes .../be/485112173592dea7b39c7efc3a6f52f43b71b9 | Bin 0 -> 184 bytes .../be/be684962b7b3a4d751f95173b31a051c7d46e7 | Bin 0 -> 182 bytes .../e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 | Bin 184 -> 0 bytes .../f3/48ff60bdbb3695f2f519db6bc115b1b8d50886 | Bin 147 -> 0 bytes .../f7/114350b59290905115d7918efe144eb2c62a76 | Bin 0 -> 147 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../stash/expected/repo/.git_keep/refs/stash | 2 +- test/integration/stash/expected/repo/file2 | 2 +- test/integration/stash/expected/repo/file3 | 1 + test/integration/stash/recording.json | 2 +- .../expected/repo/.git_keep/COMMIT_EDITMSG | 1 + .../expected/repo/.git_keep/FETCH_HEAD | 0 .../expected/repo/.git_keep/HEAD | 1 + .../expected/repo/.git_keep/ORIG_HEAD | 1 + .../expected/repo/.git_keep/config | 8 ++++++ .../expected/repo/.git_keep/description | 1 + .../expected/repo/.git_keep/index | Bin 0 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 6 ++++ .../expected/repo/.git_keep/logs/HEAD | 6 ++++ .../repo/.git_keep/logs/refs/heads/master | 3 ++ .../18/0cf8328022becee9aaa2577a8f84ea2b9f3827 | Bin 0 -> 21 bytes .../1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 | Bin 0 -> 50 bytes .../28/59c9a5f343c80929844d6e49d3792b9169c4da | Bin 0 -> 85 bytes .../29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 | 3 ++ .../38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da | Bin 0 -> 21 bytes .../56/52247b638d1516506790d6648b864ba3447f68 | Bin .../5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 | Bin 0 -> 81 bytes .../62/4317ac2731648d4b0e30068dd35aca2a0b4791 | Bin 0 -> 147 bytes .../6c/09c8b498849a1679bcd05488661a2ce123b578 | 2 ++ .../6e/fac41f92e54de5411b9195449dbef0960daaf4 | 3 ++ .../7f/e42e1229b06d1307f6e7717c47f6bb4248fa2e | 1 + .../8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 | Bin 0 -> 100 bytes .../8f/a874178500f99d69f649ff9128f3d1b62369a0 | Bin 0 -> 148 bytes .../9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c | Bin 0 -> 101 bytes .../a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 | Bin 0 -> 21 bytes .../b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 | Bin 0 -> 162 bytes .../c7/c7da3c64e86c3270f2639a1379e67e14891b6a | Bin 0 -> 28 bytes .../d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 | 2 ++ .../d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd | 1 + .../f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc | Bin 0 -> 161 bytes .../expected/repo/.git_keep/refs/heads/master | 1 + .../stashAllChanges/expected/repo/file0 | 1 + .../stashAllChanges/expected/repo/file1 | 1 + .../stashAllChanges/expected/repo/file2 | 1 + .../stashAllChanges/expected/repo/file3 | 1 + .../stashAllChanges/recording.json | 1 + test/integration/stashAllChanges/setup.sh | 26 ++++++++++++++++++ test/integration/stashAllChanges/test.json | 1 + .../expected/repo/.git_keep/COMMIT_EDITMSG | 1 + .../expected/repo/.git_keep/FETCH_HEAD | 0 .../expected/repo/.git_keep/HEAD | 1 + .../expected/repo/.git_keep/ORIG_HEAD | 1 + .../expected/repo/.git_keep/config | 8 ++++++ .../expected/repo/.git_keep/description | 1 + .../expected/repo/.git_keep/index | Bin 0 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 6 ++++ .../expected/repo/.git_keep/logs/HEAD | 4 +++ .../repo/.git_keep/logs/refs/heads/master | 3 ++ .../18/0cf8328022becee9aaa2577a8f84ea2b9f3827 | Bin 0 -> 21 bytes .../1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 | Bin 0 -> 50 bytes .../24/35f1f9565ecb370eb550f591d55179f1e9a7de | Bin 0 -> 161 bytes .../38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da | Bin 0 -> 21 bytes .../5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 | Bin 0 -> 81 bytes .../66/bbc809cdafd867cf9320bfb7484bb8fa898448 | 3 ++ .../78/3b58a50bb867917c6a8a78ff18cadb3fdc771e | Bin 0 -> 119 bytes .../8f/bffdd316c764e171c3e421205327588077f49c | 1 + .../9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c | Bin 0 -> 101 bytes .../a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 | Bin 0 -> 21 bytes .../c7/c7da3c64e86c3270f2639a1379e67e14891b6a | Bin 0 -> 28 bytes .../d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 | 2 ++ .../e2/21db5981b482fb2110c8b283f48c08cd5f10c3 | Bin 0 -> 148 bytes .../e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 | Bin 0 -> 147 bytes .../expected/repo/.git_keep/refs/heads/master | 1 + .../expected/repo/file0 | 1 + .../expected/repo/file1 | 1 + .../expected/repo/file2 | 1 + .../expected/repo/file3 | 1 + .../stashAllChangesKeepIndex/recording.json | 1 + .../stashAllChangesKeepIndex/setup.sh | 26 ++++++++++++++++++ .../stashAllChangesKeepIndex/test.json | 1 + .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stashDrop/expected/repo/.git_keep/config | 2 -- .../stashDrop/expected/repo/.git_keep/index | Bin 262 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 1 - .../expected/repo/.git_keep/logs/HEAD | 13 ++++----- .../repo/.git_keep/logs/refs/heads/master | 6 ++-- .../expected/repo/.git_keep/logs/refs/stash | 1 - .../0d/b7c2bffa900585f06112e5b06f8f358638f447 | 4 +++ .../1c/88e069f3e318f1e0e02188cf65d360ab4eab67 | Bin 0 -> 185 bytes .../1e/6f4a55f3dd26848238337763f249681ef9397b | Bin 160 -> 0 bytes .../1e/a8d05b2cbc972b48eae3181e846f82eeab50ef | Bin 0 -> 118 bytes .../2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf | 1 + .../56/52247b638d1516506790d6648b864ba3447f68 | Bin 127 -> 0 bytes .../6d/c07da80aed51d01a56a89ef37f4411adbd75c5 | Bin 161 -> 0 bytes .../76/05fecac5dee01fb9df55ca984dcc7a72810f48 | Bin 145 -> 0 bytes .../87/82cd42420de6a24264417d43d50ada9aa53ad5 | Bin 0 -> 162 bytes .../8e/724d42465144007f28d45514537886f527eef9 | Bin 0 -> 146 bytes .../8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 | Bin 0 -> 100 bytes .../9f/2757166809c291c65f09778abb46cfcc4e4a0c | Bin 107 -> 0 bytes .../a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d | Bin 0 -> 182 bytes .../a6/ed180e13649885eed39866051ca0e25c0ad6ac | Bin 189 -> 0 bytes .../c0/0c9eb1ae239494475772c3f3dbae5ea4169575 | 2 -- .../d2/2496528fe3c076a668c496ae7ba1f8136f1614 | 3 -- .../e0/61c8716830532562f919dcb125ea804f87ca2b | Bin 182 -> 0 bytes .../e5/cef1a548f3613b3e538bd0fc2b4ec88043fc25 | Bin 190 -> 0 bytes .../f1/963e622e30276cf4e5880109ea475434d6f2ae | Bin 0 -> 146 bytes .../f4/f81b6542e98a2f80269449674b0f8f454b74b0 | Bin 182 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 1 - .../integration/stashDrop/expected/repo/file1 | 2 +- .../integration/stashDrop/expected/repo/file2 | 2 +- .../integration/stashDrop/expected/repo/file3 | 1 + test/integration/stashDrop/recording.json | 2 +- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stashPop/expected/repo/.git_keep/config | 2 -- .../stashPop/expected/repo/.git_keep/index | Bin 281 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 1 - .../expected/repo/.git_keep/logs/HEAD | 12 ++++---- .../repo/.git_keep/logs/refs/heads/master | 6 ++-- .../expected/repo/.git_keep/logs/refs/stash | 2 +- .../01/38b2ed57b0412b2c2244a267fc1396f06ac287 | 2 ++ .../2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 | Bin 0 -> 118 bytes .../3a/e4e5d4920afbb1bac23426afb237524c8dbe41 | Bin 147 -> 0 bytes .../43/7b9b0ca941f1e12c8b45958f5d6ebd11cdd41a | 1 - .../5e/6c498354e93f4049e80254810f4577b180a8ab | 2 ++ .../60/5615b78c181314a7a019e116647bfdf9127c94 | Bin 0 -> 147 bytes .../82/cc524693ae9fb40af0ed8ab7e22581084dcd17 | Bin 161 -> 0 bytes .../86/34432ef171aa4b8d8e688fc1e5645245bf36ac | Bin 147 -> 0 bytes .../8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 | Bin 0 -> 183 bytes .../8b/081dcb0e1fd5e9862d1aa6891b805b101abe7b | Bin 118 -> 0 bytes .../8b/d86c566a91e9f8ace9883f7017f562c971b3f7 | Bin 182 -> 0 bytes .../a8/4a187f63b05bb43f19cfbc8bedab97ed33272d | Bin 0 -> 162 bytes .../b0/00623a052b4d2226c43ba396b830738799740e | Bin 162 -> 0 bytes .../b8/372ee9ddb68d8b15c440d86d21b6199583fb26 | 3 ++ .../c6/a8d49b926afc9ff2b4c64398ee678c50c2c953 | 1 - .../e0/0e994a4acb98bcbe93ad478e09dcb3bed6b26c | Bin 190 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 2 +- test/integration/stashPop/expected/repo/file2 | 2 +- .../expected/repo/.git_keep/COMMIT_EDITMSG | 1 + .../expected/repo/.git_keep/FETCH_HEAD | 0 .../expected/repo/.git_keep/HEAD | 1 + .../expected/repo/.git_keep/ORIG_HEAD | 1 + .../expected/repo/.git_keep/config | 8 ++++++ .../expected/repo/.git_keep/description | 1 + .../expected/repo/.git_keep/index | Bin 0 -> 334 bytes .../expected/repo/.git_keep/info/exclude | 6 ++++ .../expected/repo/.git_keep/logs/HEAD | 5 ++++ .../repo/.git_keep/logs/refs/heads/master | 3 ++ .../18/0cf8328022becee9aaa2577a8f84ea2b9f3827 | Bin 0 -> 21 bytes .../1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 | Bin 0 -> 50 bytes .../28/59c9a5f343c80929844d6e49d3792b9169c4da | Bin 0 -> 85 bytes .../2b/515d20a02212d14a519d82917b791e01ebc659 | Bin 0 -> 148 bytes .../2b/d62bafdea9ceb4732326e82d4ce14196d7a032 | Bin 0 -> 160 bytes .../38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da | Bin 0 -> 21 bytes .../40/62b34fff18c4453edded2da4f0737176daaa4d | Bin 0 -> 118 bytes .../4f/301f03a7f9c5a3c98aa219dd0f184afec3f248 | Bin 0 -> 107 bytes .../54/fbb8276359cb6f68faa9cb7dcf58f93c838035 | Bin 0 -> 187 bytes .../9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c | Bin 0 -> 101 bytes .../a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 | Bin 0 -> 21 bytes .../b1/60a56c2580f8cc1e5432f32212f83395459997 | Bin 0 -> 147 bytes .../c7/c7da3c64e86c3270f2639a1379e67e14891b6a | Bin 0 -> 28 bytes .../d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 | 2 ++ .../fe/0b6136ae74e574b3349fabbf0b89053c6a201e | Bin 0 -> 187 bytes .../expected/repo/.git_keep/refs/heads/master | 1 + .../stashStagedChanges/expected/repo/file0 | 1 + .../stashStagedChanges/expected/repo/file1 | 1 + .../stashStagedChanges/expected/repo/file2 | 1 + .../stashStagedChanges/expected/repo/file3 | 1 + .../stashStagedChanges/recording.json | 1 + test/integration/stashStagedChanges/setup.sh | 26 ++++++++++++++++++ test/integration/stashStagedChanges/test.json | 1 + .../expected/repo/.git_keep/COMMIT_EDITMSG | 1 + .../expected/repo/.git_keep/FETCH_HEAD | 0 .../expected/repo/.git_keep/HEAD | 1 + .../expected/repo/.git_keep/ORIG_HEAD | 1 + .../expected/repo/.git_keep/config | 8 ++++++ .../expected/repo/.git_keep/description | 1 + .../expected/repo/.git_keep/index | Bin 0 -> 262 bytes .../expected/repo/.git_keep/info/exclude | 6 ++++ .../expected/repo/.git_keep/logs/HEAD | 6 ++++ .../repo/.git_keep/logs/refs/heads/master | 5 ++++ .../18/0cf8328022becee9aaa2577a8f84ea2b9f3827 | Bin 0 -> 21 bytes .../1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 | Bin 0 -> 50 bytes .../38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da | Bin 0 -> 21 bytes .../3a/8dac53bf53e3243a325a9e0b3ef523764ee74d | 2 ++ .../5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 | Bin 0 -> 81 bytes .../66/bbc809cdafd867cf9320bfb7484bb8fa898448 | 3 ++ .../74/244487ab29dc413ae1f98e4fa40256a0787212 | Bin 0 -> 147 bytes .../84/988130b443577e2afc62d4103f92fcbed33add | Bin 0 -> 118 bytes .../9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c | Bin 0 -> 101 bytes .../a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 | Bin 0 -> 21 bytes .../c2/71c5cc28c056383278c655b4e227fa69b06073 | Bin 0 -> 185 bytes .../c7/c7da3c64e86c3270f2639a1379e67e14891b6a | Bin 0 -> 28 bytes .../c8/84f894908d3042f54995005b8e3445958b2fcc | Bin 0 -> 148 bytes .../d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 | 2 ++ .../ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b | Bin 0 -> 176 bytes .../expected/repo/.git_keep/refs/heads/master | 1 + .../stashUnstagedChanges/expected/repo/file0 | 1 + .../stashUnstagedChanges/expected/repo/file1 | 1 + .../stashUnstagedChanges/expected/repo/file2 | 1 + .../stashUnstagedChanges/expected/repo/file3 | 1 + .../stashUnstagedChanges/recording.json | 1 + .../integration/stashUnstagedChanges/setup.sh | 26 ++++++++++++++++++ .../stashUnstagedChanges/test.json | 1 + 225 files changed, 329 insertions(+), 66 deletions(-) delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/2e/fac8148440778cbddcd80ac7477981277dcffe delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/3b/29b35d4357f8e64cafd95140a70d7c9b25138a delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/4c/c838ea1466afc5be1d3bc3e7a937641ec84d7d create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/4f/9ff661c6c81b54d631d6d7c71399972e5c7a58 create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/6b/1f87e5b74cd77d755d213e0850f4de02b3cdce create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/81/f9f45d5eca6c23bf25b4a53172bcfb5ceb3963 create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/8c/3123f6f4cee663b57398072df088c6f2dfeb9b rename test/integration/{stashPop => stash}/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 (100%) delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/be/485112173592dea7b39c7efc3a6f52f43b71b9 create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/be/be684962b7b3a4d751f95173b31a051c7d46e7 delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 delete mode 100644 test/integration/stash/expected/repo/.git_keep/objects/f3/48ff60bdbb3695f2f519db6bc115b1b8d50886 create mode 100644 test/integration/stash/expected/repo/.git_keep/objects/f7/114350b59290905115d7918efe144eb2c62a76 create mode 100644 test/integration/stash/expected/repo/file3 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/COMMIT_EDITMSG create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/FETCH_HEAD create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/HEAD create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/config create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/description create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/index create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/info/exclude create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/logs/HEAD create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da rename test/integration/{stash => stashAllChanges}/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 (100%) create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/7f/e42e1229b06d1307f6e7717c47f6bb4248fa2e create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/8f/a874178500f99d69f649ff9128f3d1b62369a0 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/refs/heads/master create mode 100644 test/integration/stashAllChanges/expected/repo/file0 create mode 100644 test/integration/stashAllChanges/expected/repo/file1 create mode 100644 test/integration/stashAllChanges/expected/repo/file2 create mode 100644 test/integration/stashAllChanges/expected/repo/file3 create mode 100644 test/integration/stashAllChanges/recording.json create mode 100644 test/integration/stashAllChanges/setup.sh create mode 100644 test/integration/stashAllChanges/test.json create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/COMMIT_EDITMSG create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/FETCH_HEAD create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/HEAD create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/ORIG_HEAD create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/config create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/description create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/index create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/info/exclude create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/HEAD create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/file0 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/file1 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/file2 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/file3 create mode 100644 test/integration/stashAllChangesKeepIndex/recording.json create mode 100644 test/integration/stashAllChangesKeepIndex/setup.sh create mode 100644 test/integration/stashAllChangesKeepIndex/test.json delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/logs/refs/stash create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/1e/6f4a55f3dd26848238337763f249681ef9397b create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/1e/a8d05b2cbc972b48eae3181e846f82eeab50ef create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/6d/c07da80aed51d01a56a89ef37f4411adbd75c5 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/76/05fecac5dee01fb9df55ca984dcc7a72810f48 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/87/82cd42420de6a24264417d43d50ada9aa53ad5 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/a6/ed180e13649885eed39866051ca0e25c0ad6ac delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/c0/0c9eb1ae239494475772c3f3dbae5ea4169575 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/d2/2496528fe3c076a668c496ae7ba1f8136f1614 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/e0/61c8716830532562f919dcb125ea804f87ca2b delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/e5/cef1a548f3613b3e538bd0fc2b4ec88043fc25 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/f4/f81b6542e98a2f80269449674b0f8f454b74b0 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/refs/stash create mode 100644 test/integration/stashDrop/expected/repo/file3 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/3a/e4e5d4920afbb1bac23426afb237524c8dbe41 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/43/7b9b0ca941f1e12c8b45958f5d6ebd11cdd41a create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/82/cc524693ae9fb40af0ed8ab7e22581084dcd17 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/86/34432ef171aa4b8d8e688fc1e5645245bf36ac create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/8b/081dcb0e1fd5e9862d1aa6891b805b101abe7b delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/8b/d86c566a91e9f8ace9883f7017f562c971b3f7 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/a8/4a187f63b05bb43f19cfbc8bedab97ed33272d delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/b0/00623a052b4d2226c43ba396b830738799740e create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/b8/372ee9ddb68d8b15c440d86d21b6199583fb26 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/c6/a8d49b926afc9ff2b4c64398ee678c50c2c953 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/e0/0e994a4acb98bcbe93ad478e09dcb3bed6b26c create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/COMMIT_EDITMSG create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/FETCH_HEAD create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/HEAD create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/ORIG_HEAD create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/config create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/description create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/index create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/info/exclude create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/4f/301f03a7f9c5a3c98aa219dd0f184afec3f248 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/54/fbb8276359cb6f68faa9cb7dcf58f93c838035 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/refs/heads/master create mode 100644 test/integration/stashStagedChanges/expected/repo/file0 create mode 100644 test/integration/stashStagedChanges/expected/repo/file1 create mode 100644 test/integration/stashStagedChanges/expected/repo/file2 create mode 100644 test/integration/stashStagedChanges/expected/repo/file3 create mode 100644 test/integration/stashStagedChanges/recording.json create mode 100644 test/integration/stashStagedChanges/setup.sh create mode 100644 test/integration/stashStagedChanges/test.json create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/COMMIT_EDITMSG create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/FETCH_HEAD create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/HEAD create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/ORIG_HEAD create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/config create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/description create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/index create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/info/exclude create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/84/988130b443577e2afc62d4103f92fcbed33add create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/refs/heads/master create mode 100644 test/integration/stashUnstagedChanges/expected/repo/file0 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/file1 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/file2 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/file3 create mode 100644 test/integration/stashUnstagedChanges/recording.json create mode 100644 test/integration/stashUnstagedChanges/setup.sh create mode 100644 test/integration/stashUnstagedChanges/test.json diff --git a/pkg/commands/git_commands/stash.go b/pkg/commands/git_commands/stash.go index 71b8f655b..c479d8610 100644 --- a/pkg/commands/git_commands/stash.go +++ b/pkg/commands/git_commands/stash.go @@ -53,7 +53,7 @@ func (self *StashCommands) StashAndKeepIndex(message string) error { } func (self *StashCommands) StashUnstagedChanges(message string) error { - if err := self.cmd.New("git commit -m \"WIP\"").Run(); err != nil { + if err := self.cmd.New("git commit --no-verify -m \"[lazygit] stashing unstaged changes\"").Run(); err != nil { return err } if err := self.Save(message); err != nil { diff --git a/test/integration/stash/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stash/expected/repo/.git_keep/ORIG_HEAD index 78e4eb58e..70b2d64a5 100644 --- a/test/integration/stash/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stash/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -f348ff60bdbb3695f2f519db6bc115b1b8d50886 +6b1f87e5b74cd77d755d213e0850f4de02b3cdce diff --git a/test/integration/stash/expected/repo/.git_keep/config b/test/integration/stash/expected/repo/.git_keep/config index 8ae104545..596ebaeb3 100644 --- a/test/integration/stash/expected/repo/.git_keep/config +++ b/test/integration/stash/expected/repo/.git_keep/config @@ -3,8 +3,6 @@ filemode = true bare = false logallrefupdates = true - ignorecase = true - precomposeunicode = true [user] email = CI@example.com name = CI diff --git a/test/integration/stash/expected/repo/.git_keep/index b/test/integration/stash/expected/repo/.git_keep/index index daebfa4ef6fda597412bbd7efb7150e89f3eec9d..1e08e259690c36f4254dfd74f5abaeaccb19eff3 100644 GIT binary patch delta 93 zcmbQq)W&4s;u+-3z`(!+#LP*NToqQaSFK<)P)v&9!v$FehQ=j8=@%e8(I97Hn8d^! mfr&@drP&yC4HXQyoE8T^Wl6Yow=8q&daDx?KmU}tw-Eq;*&adw delta 147 zcmZo;n#p9~;u+-3z`(!+#LS8BV&8~K-mVAHA}j7qV`N}pWm5c|!obkDgn@zaD^QKd zM1vd+ki5j##&!@bK5_F8sJb*{bwIUj6OX9tNirBK7;w$&Sk8OmhVG^H`>!&Vy{~xK dp}a@Ozpbn7RqCT7S-WaNLi3lcsVX==1pwY5HckKl diff --git a/test/integration/stash/expected/repo/.git_keep/info/exclude b/test/integration/stash/expected/repo/.git_keep/info/exclude index 8e9f2071f..a5196d1be 100644 --- a/test/integration/stash/expected/repo/.git_keep/info/exclude +++ b/test/integration/stash/expected/repo/.git_keep/info/exclude @@ -4,4 +4,3 @@ # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ -.DS_Store diff --git a/test/integration/stash/expected/repo/.git_keep/logs/HEAD b/test/integration/stash/expected/repo/.git_keep/logs/HEAD index f95cf06ac..d7185f04d 100644 --- a/test/integration/stash/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stash/expected/repo/.git_keep/logs/HEAD @@ -1,6 +1,5 @@ -0000000000000000000000000000000000000000 a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b CI 1643011553 +1100 commit (initial): file0 -a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b 4cc838ea1466afc5be1d3bc3e7a937641ec84d7d CI 1643011553 +1100 commit: file1 -4cc838ea1466afc5be1d3bc3e7a937641ec84d7d f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011553 +1100 commit: file2 -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011556 +1100 reset: moving to HEAD -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011556 +1100 reset: moving to HEAD -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011558 +1100 reset: moving to HEAD +0000000000000000000000000000000000000000 8c3123f6f4cee663b57398072df088c6f2dfeb9b CI 1650002552 +0200 commit (initial): file0 +8c3123f6f4cee663b57398072df088c6f2dfeb9b f7114350b59290905115d7918efe144eb2c62a76 CI 1650002552 +0200 commit: file1 +f7114350b59290905115d7918efe144eb2c62a76 6b1f87e5b74cd77d755d213e0850f4de02b3cdce CI 1650002552 +0200 commit: file2 +6b1f87e5b74cd77d755d213e0850f4de02b3cdce 6b1f87e5b74cd77d755d213e0850f4de02b3cdce CI 1650002559 +0200 reset: moving to HEAD +6b1f87e5b74cd77d755d213e0850f4de02b3cdce 6b1f87e5b74cd77d755d213e0850f4de02b3cdce CI 1650002567 +0200 reset: moving to HEAD diff --git a/test/integration/stash/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stash/expected/repo/.git_keep/logs/refs/heads/master index d1bf421f8..cacae4d5c 100644 --- a/test/integration/stash/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stash/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b CI 1643011553 +1100 commit (initial): file0 -a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b 4cc838ea1466afc5be1d3bc3e7a937641ec84d7d CI 1643011553 +1100 commit: file1 -4cc838ea1466afc5be1d3bc3e7a937641ec84d7d f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011553 +1100 commit: file2 +0000000000000000000000000000000000000000 8c3123f6f4cee663b57398072df088c6f2dfeb9b CI 1650002552 +0200 commit (initial): file0 +8c3123f6f4cee663b57398072df088c6f2dfeb9b f7114350b59290905115d7918efe144eb2c62a76 CI 1650002552 +0200 commit: file1 +f7114350b59290905115d7918efe144eb2c62a76 6b1f87e5b74cd77d755d213e0850f4de02b3cdce CI 1650002552 +0200 commit: file2 diff --git a/test/integration/stash/expected/repo/.git_keep/logs/refs/stash b/test/integration/stash/expected/repo/.git_keep/logs/refs/stash index 3f07cf22e..bcf0a385b 100644 --- a/test/integration/stash/expected/repo/.git_keep/logs/refs/stash +++ b/test/integration/stash/expected/repo/.git_keep/logs/refs/stash @@ -1,2 +1 @@ -0000000000000000000000000000000000000000 e09b4dfcd66bfa1c81feeaf67e04d55368a2b065 CI 1643011556 +1100 On master: asd -e09b4dfcd66bfa1c81feeaf67e04d55368a2b065 2efac8148440778cbddcd80ac7477981277dcffe CI 1643011558 +1100 On master: asd +0000000000000000000000000000000000000000 be485112173592dea7b39c7efc3a6f52f43b71b9 CI 1650002559 +0200 On master: asd diff --git a/test/integration/stash/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc b/test/integration/stash/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc deleted file mode 100644 index aab767a086e05e43391e8ca7089f727787fcb744..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlw{|WVc%p5qjz~vQ2^o(@Krt^X%NdBtxzH(lNl3_Kx$A9W4x++AqYt4gEan-vyfi32NGWVJse10IxI)+`Wt|X7 zQ6-TTVH4l&zHTs#a2dv1{>1ux2OCqQ_G56@5bmELpj2w+| zY?zYMM5w~2KGz+_32x)`$VVvKD_`PT?qJaNy4eolY>d{b(Kc1{pSqftln+=JDB<0z Q>+cF=e&tSm0rw0aƽۢKֹѼxX\r6K068o%#cd-ev5ltpQBm̙ѓ',&N)'QmηU>O9V/!!ǰqF:YWm^cuYAbaA \ No newline at end of file diff --git a/test/integration/stash/expected/repo/.git_keep/objects/6b/1f87e5b74cd77d755d213e0850f4de02b3cdce b/test/integration/stash/expected/repo/.git_keep/objects/6b/1f87e5b74cd77d755d213e0850f4de02b3cdce new file mode 100644 index 0000000000000000000000000000000000000000..51688c4dc6e22ed2ed38958764aa6667917b5f11 GIT binary patch literal 148 zcmV;F0Biqv0gcX03c@fDKw;N8MfQTsOgqU0M1-z-jQmWn(AZKUczk;Vw~ue}^48kY zEe5*uL)8Wqi5^OpB2)^+nrdM{@3eYR6rmwy%4Uy;zPqg+aU2*D2MQ2?5xMw)qE&Gm zHBojHy)*ICU)y1)+1{u5so&W4Rd0D~4~vcgfSAc%fdI@|&#A6|a#NR8$@~CKYB=sM CwMP&D literal 0 HcmV?d00001 diff --git a/test/integration/stash/expected/repo/.git_keep/objects/81/f9f45d5eca6c23bf25b4a53172bcfb5ceb3963 b/test/integration/stash/expected/repo/.git_keep/objects/81/f9f45d5eca6c23bf25b4a53172bcfb5ceb3963 new file mode 100644 index 000000000..b2cb857d0 --- /dev/null +++ b/test/integration/stash/expected/repo/.git_keep/objects/81/f9f45d5eca6c23bf25b4a53172bcfb5ceb3963 @@ -0,0 +1,2 @@ +x +0E]+f/$c*"BW<&X0Mf‰vf6H8s"b!I@HZkd&Ǧ191IɁ fUb,= i~KDTƌpF(:QŲ&>P*ˋBf \ No newline at end of file diff --git a/test/integration/stash/expected/repo/.git_keep/objects/8c/3123f6f4cee663b57398072df088c6f2dfeb9b b/test/integration/stash/expected/repo/.git_keep/objects/8c/3123f6f4cee663b57398072df088c6f2dfeb9b new file mode 100644 index 000000000..0ae4c30f4 --- /dev/null +++ b/test/integration/stash/expected/repo/.git_keep/objects/8c/3123f6f4cee663b57398072df088c6f2dfeb9b @@ -0,0 +1,3 @@ +xA +0Fa9ԀU4)znպtdqR!'hP6'z{YY0?) +6֒+ \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 b/test/integration/stash/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 similarity index 100% rename from test/integration/stashPop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 rename to test/integration/stash/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 diff --git a/test/integration/stash/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c b/test/integration/stash/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c deleted file mode 100644 index 539f9791905e17d0a85ce5884381ce25c523a355..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107 zcmV-x0F?iD0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8J6yO{8u&g#+QiDD4u+$3jtm&-B*zm7%?0_e#<81MUGLyr{r0}mCx!#I;FFa N6c}Sw005AMIi$QpFR=gs diff --git a/test/integration/stash/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 b/test/integration/stash/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 deleted file mode 100644 index 0cdd88ea01086a9f483371d5a3ed867a033a7df4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmV;w06_nE0gaElY6LM1MN`jLs1F3ow)|K^2y8W7y3~>_k%jfnGI1cEpJ}#FdpY;O zY1W`mVn`?pJ+j t+js*^F}TA{37!$1TaNXJnEFqA`CLC>yTRb^<8yj6fL*TY{{SjyPcu(sUbFxJ diff --git a/test/integration/stash/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b b/test/integration/stash/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b deleted file mode 100644 index 9dcd075d6e7cddcfdb4fbf70e13e4b441151aa9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{NhYZQ5uvLdBWeC%p`oQj@c8x!ZXX}Kd24Oy zB&wHw03>h-Lyj?)EPe>72*CGTwX)5n+6axR)}&8=ZwHMNJ;v#UZ)*FB+q|_WNl?ck Y-aERAFq^ZUla4>RsmlsBKi88h)?zI;=>Px# diff --git a/test/integration/stash/expected/repo/.git_keep/objects/be/485112173592dea7b39c7efc3a6f52f43b71b9 b/test/integration/stash/expected/repo/.git_keep/objects/be/485112173592dea7b39c7efc3a6f52f43b71b9 new file mode 100644 index 0000000000000000000000000000000000000000..59e0babdb1d0242a3ea6b2cde865d31a32e092b3 GIT binary patch literal 184 zcmV;p07w6L0gcbQY6C$Gh2hlu6w@1mMl+gA2*KdWRh~f_NhFZ*n)L?q_}M0X+QSEj zf2?zU?g4Xq+BdU6!@RQ_7fw}M_l{(kO}s`{8&Z-+hq~N(v)dkuL~qqdY93mvRwBii z3>txFH9$#2hyD2$y?Z7l8(an^aU{u1DOQx>a{No`B`y5Df2>=$T*K?-dbS^)_b+=M m>wF8b5C9-i4<|r?xwXd0P`G1V`uF~^ZsBqbub1oDe)_zB*|V(k kEkr^9NJtz`kN}pW9uvF$lP~YLF#F^1FQGs57X#i)V9-ie@&Et; literal 0 HcmV?d00001 diff --git a/test/integration/stash/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 b/test/integration/stash/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 deleted file mode 100644 index f57ce417b7d66e70e33708d0443088b0af141a69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmV;p07w6L0gcZ+YD6&%1mM)~6z&&-e^)>=>j(TABmo1G4QcN>{8pc2HKsdAbXq-N$3Bf|2-#nqWVVJ}4*84KF zNq8BDh^`QbIWa@ZoHJHSt#HW6w`v6~kV}r7QF}h*J#=Ji&^Bt0MTl(i!KMfSYl9e> z+6hupQTa1o+o7jf->3O0-`w|AZoKt}Hsk>Sy+?fo1W>0vr-uBQtG29S)DOH*Io^5^ BMk)XR literal 0 HcmV?d00001 diff --git a/test/integration/stash/expected/repo/.git_keep/refs/heads/master b/test/integration/stash/expected/repo/.git_keep/refs/heads/master index 78e4eb58e..70b2d64a5 100644 --- a/test/integration/stash/expected/repo/.git_keep/refs/heads/master +++ b/test/integration/stash/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -f348ff60bdbb3695f2f519db6bc115b1b8d50886 +6b1f87e5b74cd77d755d213e0850f4de02b3cdce diff --git a/test/integration/stash/expected/repo/.git_keep/refs/stash b/test/integration/stash/expected/repo/.git_keep/refs/stash index 9123248e5..e627ae765 100644 --- a/test/integration/stash/expected/repo/.git_keep/refs/stash +++ b/test/integration/stash/expected/repo/.git_keep/refs/stash @@ -1 +1 @@ -2efac8148440778cbddcd80ac7477981277dcffe +be485112173592dea7b39c7efc3a6f52f43b71b9 diff --git a/test/integration/stash/expected/repo/file2 b/test/integration/stash/expected/repo/file2 index 180cf8328..c7c7da3c6 100644 --- a/test/integration/stash/expected/repo/file2 +++ b/test/integration/stash/expected/repo/file2 @@ -1 +1 @@ -test2 +hello there diff --git a/test/integration/stash/expected/repo/file3 b/test/integration/stash/expected/repo/file3 new file mode 100644 index 000000000..c7c7da3c6 --- /dev/null +++ b/test/integration/stash/expected/repo/file3 @@ -0,0 +1 @@ +hello there diff --git a/test/integration/stash/recording.json b/test/integration/stash/recording.json index 48fc35158..cefefc363 100644 --- a/test/integration/stash/recording.json +++ b/test/integration/stash/recording.json @@ -1 +1 @@ -{"KeyEvents":[{"Timestamp":809,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1369,"Mod":0,"Key":256,"Ch":83},{"Timestamp":1713,"Mod":0,"Key":258,"Ch":0},{"Timestamp":2087,"Mod":0,"Key":13,"Ch":13},{"Timestamp":2376,"Mod":0,"Key":256,"Ch":97},{"Timestamp":2440,"Mod":0,"Key":256,"Ch":115},{"Timestamp":2512,"Mod":0,"Key":256,"Ch":100},{"Timestamp":2793,"Mod":0,"Key":13,"Ch":13},{"Timestamp":3498,"Mod":0,"Key":258,"Ch":0},{"Timestamp":4113,"Mod":0,"Key":256,"Ch":32},{"Timestamp":4785,"Mod":0,"Key":256,"Ch":115},{"Timestamp":5145,"Mod":0,"Key":256,"Ch":97},{"Timestamp":5183,"Mod":0,"Key":256,"Ch":115},{"Timestamp":5249,"Mod":0,"Key":256,"Ch":100},{"Timestamp":5609,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6216,"Mod":0,"Key":259,"Ch":0},{"Timestamp":6457,"Mod":0,"Key":259,"Ch":0},{"Timestamp":6728,"Mod":0,"Key":259,"Ch":0},{"Timestamp":7098,"Mod":0,"Key":258,"Ch":0},{"Timestamp":7408,"Mod":0,"Key":256,"Ch":32},{"Timestamp":8080,"Mod":0,"Key":13,"Ch":13},{"Timestamp":8752,"Mod":0,"Key":260,"Ch":0},{"Timestamp":8952,"Mod":0,"Key":260,"Ch":0},{"Timestamp":9145,"Mod":0,"Key":260,"Ch":0},{"Timestamp":9904,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":272,"Height":74}]} \ No newline at end of file +{"KeyEvents":[{"Timestamp":1303,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1922,"Mod":0,"Key":256,"Ch":83},{"Timestamp":5480,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6417,"Mod":0,"Key":256,"Ch":97},{"Timestamp":6506,"Mod":0,"Key":256,"Ch":115},{"Timestamp":6549,"Mod":0,"Key":256,"Ch":100},{"Timestamp":6874,"Mod":0,"Key":13,"Ch":13},{"Timestamp":7610,"Mod":0,"Key":256,"Ch":53},{"Timestamp":9010,"Mod":0,"Key":256,"Ch":32},{"Timestamp":10032,"Mod":0,"Key":13,"Ch":13},{"Timestamp":10900,"Mod":0,"Key":256,"Ch":50},{"Timestamp":11662,"Mod":0,"Key":256,"Ch":107},{"Timestamp":12360,"Mod":0,"Key":256,"Ch":32},{"Timestamp":12902,"Mod":0,"Key":256,"Ch":115},{"Timestamp":13687,"Mod":0,"Key":256,"Ch":97},{"Timestamp":13772,"Mod":0,"Key":256,"Ch":115},{"Timestamp":13837,"Mod":0,"Key":256,"Ch":100},{"Timestamp":14294,"Mod":0,"Key":13,"Ch":13},{"Timestamp":15489,"Mod":0,"Key":256,"Ch":53},{"Timestamp":16960,"Mod":0,"Key":256,"Ch":103},{"Timestamp":17726,"Mod":0,"Key":13,"Ch":13},{"Timestamp":18592,"Mod":0,"Key":256,"Ch":50},{"Timestamp":19603,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":56}]} \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/COMMIT_EDITMSG b/test/integration/stashAllChanges/expected/repo/.git_keep/COMMIT_EDITMSG new file mode 100644 index 000000000..6c493ff74 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/COMMIT_EDITMSG @@ -0,0 +1 @@ +file2 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/FETCH_HEAD b/test/integration/stashAllChanges/expected/repo/.git_keep/FETCH_HEAD new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/HEAD b/test/integration/stashAllChanges/expected/repo/.git_keep/HEAD new file mode 100644 index 000000000..cb089cd89 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD new file mode 100644 index 000000000..edd32295e --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD @@ -0,0 +1 @@ +8fa874178500f99d69f649ff9128f3d1b62369a0 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/config b/test/integration/stashAllChanges/expected/repo/.git_keep/config new file mode 100644 index 000000000..596ebaeb3 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/config @@ -0,0 +1,8 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[user] + email = CI@example.com + name = CI diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/description b/test/integration/stashAllChanges/expected/repo/.git_keep/description new file mode 100644 index 000000000..498b267a8 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/index b/test/integration/stashAllChanges/expected/repo/.git_keep/index new file mode 100644 index 0000000000000000000000000000000000000000..afb46a953eb37c576b041edeb4b4040a888bbc26 GIT binary patch literal 262 zcmZ?q402{*U|<4b=A=l@Z1xM;KVURaOp4*d!9@%VjZ1*iFCdtK%|gWL%7TAd+uj8q zdf&P9=A*q+O>Z%mZq5a89)eHCJkAwm&W z7OFWCJU@&Yl=hu_xoS~(Re#GX?fDk!5Oa*cx 1650002283 +0200 commit (initial): file0 +29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 624317ac2731648d4b0e30068dd35aca2a0b4791 CI 1650002283 +0200 commit: file1 +624317ac2731648d4b0e30068dd35aca2a0b4791 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002283 +0200 commit: file2 +8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002287 +0200 reset: moving to HEAD +8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002295 +0200 reset: moving to HEAD +8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002303 +0200 reset: moving to HEAD diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master new file mode 100644 index 000000000..89fb0a652 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -0,0 +1,3 @@ +0000000000000000000000000000000000000000 29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 CI 1650002283 +0200 commit (initial): file0 +29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 624317ac2731648d4b0e30068dd35aca2a0b4791 CI 1650002283 +0200 commit: file1 +624317ac2731648d4b0e30068dd35aca2a0b4791 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002283 +0200 commit: file2 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 new file mode 100644 index 0000000000000000000000000000000000000000..f74bf2335bbc5999ad0faff94fb04165d8ab5c7d GIT binary patch literal 21 ccmb~ZE#08nZNMgRZ+ literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 new file mode 100644 index 0000000000000000000000000000000000000000..79fcadf67fdecb0f0cffca7ff27b2ae5c031e4d7 GIT binary patch literal 50 zcmV-20L}k+0V^p=O;s>9W-v4`Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U I033l4YT~68jQ{`u literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da new file mode 100644 index 0000000000000000000000000000000000000000..ea6cd38669c9f73920911d2efdafe0a5b6bad32b GIT binary patch literal 85 zcmV-b0IL6Z0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h rTSy8F8IB*nWs~wE$Ee^_@+{%XXLTZ-(pg9fj0h<(#;O1SVZb>0{5mDa literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 new file mode 100644 index 000000000..efe9bb1f3 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 @@ -0,0 +1,3 @@ +xA +0FsdR +|y2)08mZ`J^%m! literal 0 HcmV?d00001 diff --git a/test/integration/stash/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 similarity index 100% rename from test/integration/stash/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 rename to test/integration/stashAllChanges/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 new file mode 100644 index 0000000000000000000000000000000000000000..6a6f2436255b8a831b87262c4d030c7d63af046b GIT binary patch literal 81 zcmV-X0IvUd0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U nND2%Yjvv2elky_RsNhrbEaA#$bt0Y8Sx5?uuqprm;XNz0$Rj03 literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 new file mode 100644 index 0000000000000000000000000000000000000000..0a30073de843cf0a495948d842f1c666218099cd GIT binary patch literal 147 zcmV;E0Brww0gcX03c@fDKw;N8MfQTsOqxF^B6QVb#F+^e8e2*Pk8h9Q_VFzqZ>=re zVx~(!RINY^%$XT-;ZjIks85b1`zlV!K^XE71~hv)^xZ9G^&(s~0TXIT+i{v7`Yml=^~PJfTMQlmh?28cAOLgLbE@l~+|*@NG(QW^I&mx| BKpFr5 literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 new file mode 100644 index 000000000..9727c4ec6 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 @@ -0,0 +1,2 @@ +xA + E/qQK)r b nXK +lȬXAim3;-- \jiAGKrYE90)Exgݠ2r "7pFB=Zs.%%<͉?J \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 new file mode 100644 index 000000000..1a811f4f1 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 @@ -0,0 +1,3 @@ +xϻJAay{F>CMw+L,3-vbnz׽.qBj,VEuAW$M|#ü[R.(CUa)j,ǚؘYE'UK:8e[dbZ0;J6h ["DxTVB)g7g_Ngx9[OekC qx?~&pt9V4hP \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 new file mode 100644 index 0000000000000000000000000000000000000000..2a1928079869c5c79e37d717252c0b2c211d73fe GIT binary patch literal 100 zcmV-q0Gt1K0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gvSTj#0s<X+NT>aA?;VO<;m0Fk`C0s@$`o>N`_=F1`6^?^M%U zND2%YmhO4{S2gv2WLwJR>kD literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 new file mode 100644 index 0000000000000000000000000000000000000000..285df3e5fbab12262e28d85e78af8a31cd0024c1 GIT binary patch literal 21 ccmb`~^A08nuUMF0Q* literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 new file mode 100644 index 0000000000000000000000000000000000000000..617e1b1b7ef688369a10eb77fbf273ca8ae48cf0 GIT binary patch literal 162 zcmV;T0A2rh0gaA93c@fDMP263=l z183u|Z6c6lM5T#*5q5~4DS6=#G>4SOXh$DPBqsCZO_l~pIYn<{3W%C>p{(SyYPK%v zQ0z!4eAGlPAM9PI~BiJ!N8W-osW20IwDcng9R* literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 new file mode 100644 index 000000000..2e9066287 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 @@ -0,0 +1,2 @@ +x+)JMU03c040031QHI5`ֶww.hT[H + yW5Ɨ(| ^-W(x9 \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd new file mode 100644 index 000000000..4379cd5d8 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd @@ -0,0 +1 @@ +xϻJAay鮮ZD6o=̴o$榇^{LcPf,NQp%-aVLY3e4,ѹZXc`59;͒HEH)I18dnpZo)<gQ#<:tn:#bmnOۯԯG-=N^ \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc new file mode 100644 index 0000000000000000000000000000000000000000..9a5aa9571a31ac952308b2c56a2ab9ec1c6995f9 GIT binary patch literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlzK0ZIg|N2tD-~X|jt2)0P^c&$k!vUWXZ&w3ISc zAnQ+c6M-Pi(PK`WnR2G6qvj5+ccPxfGE*}qN@k6l%oSK8`__8y5H*DCg1R=S21~3> zwxgrQg@`78>T}tkAK=yx57}c`Uvf!Hxr22_j703=jD% file0 +git add . +git commit -am file0 + +echo test1 > file1 +git add . +git commit -am file1 + +echo test2 > file2 +git add . +git commit -am file2 + +echo "hello there" > file1 +echo "hello there" > file2 +echo "hello there" > file3 diff --git a/test/integration/stashAllChanges/test.json b/test/integration/stashAllChanges/test.json new file mode 100644 index 000000000..645b63f7f --- /dev/null +++ b/test/integration/stashAllChanges/test.json @@ -0,0 +1 @@ +{ "description": "Stashing all files", "speed": 5 } diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/COMMIT_EDITMSG b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/COMMIT_EDITMSG new file mode 100644 index 000000000..6c493ff74 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/COMMIT_EDITMSG @@ -0,0 +1 @@ +file2 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/FETCH_HEAD b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/FETCH_HEAD new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/HEAD b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/HEAD new file mode 100644 index 000000000..cb089cd89 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/ORIG_HEAD new file mode 100644 index 000000000..98460a0ae --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/ORIG_HEAD @@ -0,0 +1 @@ +e55d4f76f2b99c3b6b0c960725099ae54e34af70 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/config b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/config new file mode 100644 index 000000000..596ebaeb3 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/config @@ -0,0 +1,8 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[user] + email = CI@example.com + name = CI diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/description b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/description new file mode 100644 index 000000000..498b267a8 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/index b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/index new file mode 100644 index 0000000000000000000000000000000000000000..e633e1ab156d53457f4f434db14ccefdb69e6d08 GIT binary patch literal 262 zcmZ?q402{*U|<4b=A=l@Q}S8AYG5=_Op4*d(OV1*jZ1*iFCdtK%|gWL%7TAd+uj8q zdf&P9=A*q+O>Z%mZq5a89)eHCJkAwm&W z7OFWCJU@&Yl=hu_xoS~(Re#GX?fDk!5Oa*cx literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/info/exclude b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/info/exclude new file mode 100644 index 000000000..a5196d1be --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/HEAD b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/HEAD new file mode 100644 index 000000000..26e835cdd --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/HEAD @@ -0,0 +1,4 @@ +0000000000000000000000000000000000000000 783b58a50bb867917c6a8a78ff18cadb3fdc771e CI 1650002378 +0200 commit (initial): file0 +783b58a50bb867917c6a8a78ff18cadb3fdc771e e221db5981b482fb2110c8b283f48c08cd5f10c3 CI 1650002378 +0200 commit: file1 +e221db5981b482fb2110c8b283f48c08cd5f10c3 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002378 +0200 commit: file2 +e55d4f76f2b99c3b6b0c960725099ae54e34af70 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002384 +0200 reset: moving to HEAD diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master new file mode 100644 index 000000000..3032aa450 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master @@ -0,0 +1,3 @@ +0000000000000000000000000000000000000000 783b58a50bb867917c6a8a78ff18cadb3fdc771e CI 1650002378 +0200 commit (initial): file0 +783b58a50bb867917c6a8a78ff18cadb3fdc771e e221db5981b482fb2110c8b283f48c08cd5f10c3 CI 1650002378 +0200 commit: file1 +e221db5981b482fb2110c8b283f48c08cd5f10c3 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002378 +0200 commit: file2 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 new file mode 100644 index 0000000000000000000000000000000000000000..f74bf2335bbc5999ad0faff94fb04165d8ab5c7d GIT binary patch literal 21 ccmb~ZE#08nZNMgRZ+ literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 new file mode 100644 index 0000000000000000000000000000000000000000..79fcadf67fdecb0f0cffca7ff27b2ae5c031e4d7 GIT binary patch literal 50 zcmV-20L}k+0V^p=O;s>9W-v4`Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U I033l4YT~68jQ{`u literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de new file mode 100644 index 0000000000000000000000000000000000000000..63c3eaa1198f3cb074564e50b11a007b48ce9393 GIT binary patch literal 161 zcmV;S0ABxi0gaB!3c@fD06pg`_Abaa?}&)dQ$Hh{Y_MROQX};9?Zvy-VFo6(TIUXO zaHqa8gSAA-V@Nrc?5#^BD2Y_aX|IWVi9UF(y;$SMO9wV4>*8#Y6hcyD2~)7>q`?p( z8_i0`;!wm-f3^+A32x)`;62v$#h29T9R_O|y2)08mZ`J^%m! literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 new file mode 100644 index 0000000000000000000000000000000000000000..6a6f2436255b8a831b87262c4d030c7d63af046b GIT binary patch literal 81 zcmV-X0IvUd0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U nND2%Yjvv2elky_RsNhrbEaA#$bt0Y8Sx5?uuqprm;XNz0$Rj03 literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 new file mode 100644 index 000000000..c84b87a17 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 @@ -0,0 +1,3 @@ +x+)JMUd040031QHI5`ֶww.hT[H + e"ǨS,gu"YH +$x~5(;rբW-Ж+^ \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e new file mode 100644 index 0000000000000000000000000000000000000000..620eb2ec8aa70787cf382552416af5d741428b91 GIT binary patch literal 119 zcmV--0Eqv10gcT;3c@fDMq$@E#q0%{NvBBzB0^U^M$-JjLPMlP@c8x!ZXX}Kwbih+aEo@URHb8@_HSyD5?Vx#~`@B5yjrG0bwzm2paU(O^ Z!B2E$%WTeiPCEYNrffUd`~cWoE8LbTIoSXJ literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c new file mode 100644 index 000000000..f22bfcca1 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c @@ -0,0 +1 @@ +xϻj1atB0rgIgIZ?~Iqo<߆ Oc7AOb!Zjip`JPEZRL%0(8!&B>M8q 2싘hg|\zC/mߝLD!{@41O>},n_M \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c new file mode 100644 index 0000000000000000000000000000000000000000..0e95eb06dda15fe1901a7942e7954b700b36bfa9 GIT binary patch literal 101 zcmV-r0Gj`J0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gv2WLwJR>kD literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 new file mode 100644 index 0000000000000000000000000000000000000000..285df3e5fbab12262e28d85e78af8a31cd0024c1 GIT binary patch literal 21 ccmb`~^A08nuUMF0Q* literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a new file mode 100644 index 0000000000000000000000000000000000000000..ee4385f12cb5e2fea6044749c3960a2c40be7b9e GIT binary patch literal 28 kcmb4eAGlPAM9PI~BiJ!N8W-osW20IwDcng9R* literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 new file mode 100644 index 000000000..2e9066287 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 @@ -0,0 +1,2 @@ +x+)JMU03c040031QHI5`ֶww.hT[H + yW5Ɨ(| ^-W(x9 \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 new file mode 100644 index 0000000000000000000000000000000000000000..346dbdc7d917693747ad382ef628e7149cb667b4 GIT binary patch literal 148 zcmV;F0Biqv0gcW<3d0}}K+&!}h5JGoH988V6tc=O#&M*9*aWfA<2Og>_VX5>_tw^- zO|qBKMRWlS%!wHiF_A4U)XYf9*W$!F2veHEWYj@j-a}(_*+=q_a}1aaa-c{UYc-Ln zWLFC#8d3Bauf6Me(f4_I%9q-)$&L5+&?a~QunwcXf(1}#J*S5J$yHr9G3p1=O*$CJ C7f1vE literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 new file mode 100644 index 0000000000000000000000000000000000000000..5db9016237d1f9d0490bdb311233ef3d6be1f7f8 GIT binary patch literal 147 zcmV;E0Brww0gcW<3d0}}K+&!}h5JI88DpG4DTS`-rh&2QYJ$`e9ZXbW~rPaE2 zixXY?p=u{(jsdc8X3CjjNhN#0Flq^`$V@H?iP__!?{1X{bMg~o8kkBVL=aBIt_&=| zl6^VFnfU3icG!8b_j!5hH`aaAo3#3{IC=me7ua5b0L-c9RM$UqQ`Sw%`~avSIjWNc BL}UN} literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master new file mode 100644 index 000000000..98460a0ae --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master @@ -0,0 +1 @@ +e55d4f76f2b99c3b6b0c960725099ae54e34af70 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/file0 b/test/integration/stashAllChangesKeepIndex/expected/repo/file0 new file mode 100644 index 000000000..38143ad4a --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/file0 @@ -0,0 +1 @@ +test0 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/file1 b/test/integration/stashAllChangesKeepIndex/expected/repo/file1 new file mode 100644 index 000000000..c7c7da3c6 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/file1 @@ -0,0 +1 @@ +hello there diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/file2 b/test/integration/stashAllChangesKeepIndex/expected/repo/file2 new file mode 100644 index 000000000..c7c7da3c6 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/file2 @@ -0,0 +1 @@ +hello there diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/file3 b/test/integration/stashAllChangesKeepIndex/expected/repo/file3 new file mode 100644 index 000000000..c7c7da3c6 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/file3 @@ -0,0 +1 @@ +hello there diff --git a/test/integration/stashAllChangesKeepIndex/recording.json b/test/integration/stashAllChangesKeepIndex/recording.json new file mode 100644 index 000000000..353ca2ae6 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/recording.json @@ -0,0 +1 @@ +{"KeyEvents":[{"Timestamp":1343,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1895,"Mod":0,"Key":256,"Ch":83},{"Timestamp":3116,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4389,"Mod":0,"Key":256,"Ch":107},{"Timestamp":4458,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4571,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4656,"Mod":0,"Key":256,"Ch":112},{"Timestamp":4742,"Mod":0,"Key":256,"Ch":32},{"Timestamp":4834,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4908,"Mod":0,"Key":256,"Ch":110},{"Timestamp":4965,"Mod":0,"Key":256,"Ch":100},{"Timestamp":5013,"Mod":0,"Key":256,"Ch":101},{"Timestamp":5162,"Mod":0,"Key":256,"Ch":120},{"Timestamp":5500,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6822,"Mod":0,"Key":256,"Ch":53},{"Timestamp":8093,"Mod":0,"Key":256,"Ch":103},{"Timestamp":8985,"Mod":0,"Key":13,"Ch":13},{"Timestamp":9950,"Mod":0,"Key":256,"Ch":49},{"Timestamp":10588,"Mod":0,"Key":256,"Ch":106},{"Timestamp":11171,"Mod":0,"Key":256,"Ch":50},{"Timestamp":11581,"Mod":0,"Key":256,"Ch":32},{"Timestamp":12392,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":56}]} \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/setup.sh b/test/integration/stashAllChangesKeepIndex/setup.sh new file mode 100644 index 000000000..caff56b7d --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/setup.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +set -e + +cd $1 + +git init + +git config user.email "CI@example.com" +git config user.name "CI" + +echo test0 > file0 +git add . +git commit -am file0 + +echo test1 > file1 +git add . +git commit -am file1 + +echo test2 > file2 +git add . +git commit -am file2 + +echo "hello there" > file1 +echo "hello there" > file2 +echo "hello there" > file3 diff --git a/test/integration/stashAllChangesKeepIndex/test.json b/test/integration/stashAllChangesKeepIndex/test.json new file mode 100644 index 000000000..4f9314caa --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/test.json @@ -0,0 +1 @@ +{ "description": "Stashing some files", "speed": 5 } diff --git a/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD index 0a7c9cc2b..7bd761f02 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -d22496528fe3c076a668c496ae7ba1f8136f1614 +f1963e622e30276cf4e5880109ea475434d6f2ae diff --git a/test/integration/stashDrop/expected/repo/.git_keep/config b/test/integration/stashDrop/expected/repo/.git_keep/config index 8ae104545..596ebaeb3 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/config +++ b/test/integration/stashDrop/expected/repo/.git_keep/config @@ -3,8 +3,6 @@ filemode = true bare = false logallrefupdates = true - ignorecase = true - precomposeunicode = true [user] email = CI@example.com name = CI diff --git a/test/integration/stashDrop/expected/repo/.git_keep/index b/test/integration/stashDrop/expected/repo/.git_keep/index index 44fe0833f00a2c28f28ec4f13a6c54417fa26b2e..8256e1e361ac97a49ad43baf8076b6bed053e829 100644 GIT binary patch delta 136 zcmZo;YGX2R@eFciU|?VZV&X<--*6q923a7LVgp>YXN`UMD2G*FqiOkm;$ zwuu{9CT`=KSfii;RBma`e7yliL$&Qj)&>+~n|MS|J;~ G+BN_Wq$r*M delta 130 zcmZo;YGX2R@eFciU|?VZV&=qmagT(Hd>(*kAx?HjMg|5}CM70!28PBZ3=E84foeo1 z8mMT1l`+^FUSyRLeH8Mqy%@#KatdiAVHAN@nDEnE5$%&;D|D%B;>s K^PdOku>%0-O(xj@ diff --git a/test/integration/stashDrop/expected/repo/.git_keep/info/exclude b/test/integration/stashDrop/expected/repo/.git_keep/info/exclude index 8e9f2071f..a5196d1be 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/info/exclude +++ b/test/integration/stashDrop/expected/repo/.git_keep/info/exclude @@ -4,4 +4,3 @@ # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ -.DS_Store diff --git a/test/integration/stashDrop/expected/repo/.git_keep/logs/HEAD b/test/integration/stashDrop/expected/repo/.git_keep/logs/HEAD index b2e6d1769..96a7a7d7a 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stashDrop/expected/repo/.git_keep/logs/HEAD @@ -1,7 +1,6 @@ -0000000000000000000000000000000000000000 c00c9eb1ae239494475772c3f3dbae5ea4169575 CI 1643011799 +1100 commit (initial): file0 -c00c9eb1ae239494475772c3f3dbae5ea4169575 7605fecac5dee01fb9df55ca984dcc7a72810f48 CI 1643011799 +1100 commit: file1 -7605fecac5dee01fb9df55ca984dcc7a72810f48 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011799 +1100 commit: file2 -d22496528fe3c076a668c496ae7ba1f8136f1614 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011803 +1100 reset: moving to HEAD -d22496528fe3c076a668c496ae7ba1f8136f1614 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011803 +1100 reset: moving to HEAD -d22496528fe3c076a668c496ae7ba1f8136f1614 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011806 +1100 reset: moving to HEAD -d22496528fe3c076a668c496ae7ba1f8136f1614 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011806 +1100 reset: moving to HEAD +0000000000000000000000000000000000000000 1ea8d05b2cbc972b48eae3181e846f82eeab50ef CI 1650002477 +0200 commit (initial): file0 +1ea8d05b2cbc972b48eae3181e846f82eeab50ef 8e724d42465144007f28d45514537886f527eef9 CI 1650002477 +0200 commit: file1 +8e724d42465144007f28d45514537886f527eef9 f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002477 +0200 commit: file2 +f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002483 +0200 reset: moving to HEAD +f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002483 +0200 reset: moving to HEAD +f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002489 +0200 reset: moving to HEAD diff --git a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master index 62c5e5c79..f257dee84 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 c00c9eb1ae239494475772c3f3dbae5ea4169575 CI 1643011799 +1100 commit (initial): file0 -c00c9eb1ae239494475772c3f3dbae5ea4169575 7605fecac5dee01fb9df55ca984dcc7a72810f48 CI 1643011799 +1100 commit: file1 -7605fecac5dee01fb9df55ca984dcc7a72810f48 d22496528fe3c076a668c496ae7ba1f8136f1614 CI 1643011799 +1100 commit: file2 +0000000000000000000000000000000000000000 1ea8d05b2cbc972b48eae3181e846f82eeab50ef CI 1650002477 +0200 commit (initial): file0 +1ea8d05b2cbc972b48eae3181e846f82eeab50ef 8e724d42465144007f28d45514537886f527eef9 CI 1650002477 +0200 commit: file1 +8e724d42465144007f28d45514537886f527eef9 f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002477 +0200 commit: file2 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/stash deleted file mode 100644 index 0b47b5c2e..000000000 --- a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/stash +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 f4f81b6542e98a2f80269449674b0f8f454b74b0 CI 1643011806 +1100 On master: dsa diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 b/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 new file mode 100644 index 000000000..858c3f4b3 --- /dev/null +++ b/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 @@ -0,0 +1,4 @@ +xA +0E]dN&]vӖǷn߰2Up6 +Q{<0*#x'?6l:W6q6Lj +O O}.a)wQLpL;,3yWyz3_%@ \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 b/test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 new file mode 100644 index 0000000000000000000000000000000000000000..3443df0982ed9bcf3de1eb96ff43614a4815b564 GIT binary patch literal 185 zcmV;q07n0K0gcbWN(3x$9svQCqaG)w|C2B8*D&;c_~&q+`r-BqmOx7P&!JuA literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/1e/6f4a55f3dd26848238337763f249681ef9397b b/test/integration/stashDrop/expected/repo/.git_keep/objects/1e/6f4a55f3dd26848238337763f249681ef9397b deleted file mode 100644 index 24145cefe5d6422d1facb2ae6de393c5d5041043..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmV;R0AK%j0gaB!3c@fD06pg`_AW>^k4+R2p{IUEl5VijG^Ix9=bMXnufq&Xs-?^g z6uMK}nZc4(%D70{PiT>>BzKh)k@3-!i9s9VGI_Cuo!16ax39hNnRSwm0+COh1a>iC z_NXZ%p%LNJUUi3Ig!?c)`3PlO_>yXQ0Fu!X(My6eqLiZ3KGpb7UCism2h&=4sRdi?eXZXX}Kxz)OK z64guJ0218cdWx*2G``w2j7zp5ye!9_x3-ZEp2N;s$26 Y>OEcAGMlrWla4>RDa#5r2iRaM++^lEIRF3v literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf b/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf new file mode 100644 index 000000000..f79c6d13b --- /dev/null +++ b/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf @@ -0,0 +1 @@ +x1k1 F;߯^,v(nK8W-;}2uzVwH{*+%'KAEyz z]<"ei=+đM:? 5cbBs}9dh մ&پN3-$D$.^#6'>OX0{wכwN' \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 b/test/integration/stashDrop/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 deleted file mode 100644 index 8535af67cc32e9e5e4eea5f934d892197159292d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmV-_0D%8^0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8J6yO{8u&g#+QiDD4u+$3jtm&-B*zm7%@oj{4i=z+IQ~dszu>d{VlJw=Ub>F hDKKU@e*BhA%8MMMf=|h_ge#xbiF8V50RVKTIZZy{I~D){ diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/6d/c07da80aed51d01a56a89ef37f4411adbd75c5 b/test/integration/stashDrop/expected/repo/.git_keep/objects/6d/c07da80aed51d01a56a89ef37f4411adbd75c5 deleted file mode 100644 index 6d84f0e3f6edb602eba4d7de82799c5b426e909b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlw{|#LZSj1W$d&Cf#76X-kdZ^Xp8z2R55!re;B3f&9x=%IzQ#a#0=m(Y=s=W5< P^1FgEPU_4Tf5<@*kXulD diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/76/05fecac5dee01fb9df55ca984dcc7a72810f48 b/test/integration/stashDrop/expected/repo/.git_keep/objects/76/05fecac5dee01fb9df55ca984dcc7a72810f48 deleted file mode 100644 index 782d5f0ee75e11eb8535d556b55865b2d66a72b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145 zcmV;C0B-+y0gaAJ3c@fDKwak)*$Xn0F9RY%S3SmbGQmP)ONrp|%@N$b_ZCm~*4A#3 z+@+tYwm?oIBm%_3?21oyk<1ip@#;LJKp_P*2cP=xRse)_K^~5V3OVNN#8+Py)~FmX zQOwcsr@!{oPP4sF^Haavj!kc}w}-_PJRoKwdqo5=gN~`Lf99sHo1*yvn2jBpvon|@+_KJ=8=dWFvQh)66Jj!1}Rr~6dXKXo%NlYU@bpvKo; QoqtzQ=7*B`0(yr*MAq3&iU0rr literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 b/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 new file mode 100644 index 0000000000000000000000000000000000000000..4fb5b0defc93f9ab390ae9f657dd383084363f19 GIT binary patch literal 146 zcmV;D0B!$x0gaAJ3c@fDKwak)*$Xn6{6R$Ms>hg2CRk`}DG@xrJ%ZcEd+>PceHq$h zyo^IcSBQZ*GeagO!fHb+94Y%&t)PYAvJ1|roep`Qp-`&e3v%HcvA858)+8gzg_cl+ ziU(ZIq?kUw?RmQ{@U0sM_RVlY`o AvH$=8 literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 b/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 new file mode 100644 index 0000000000000000000000000000000000000000..2a1928079869c5c79e37d717252c0b2c211d73fe GIT binary patch literal 100 zcmV-q0Gt1K0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gvSTj#0s<7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8J6yO{8u&g#+QiDD4u+$3jtm&-B*zm7%?0_e#<81MUGLyr{r0}mCx!#I;FFa N6c}Sw005AMIi$QpFR=gs diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d b/test/integration/stashDrop/expected/repo/.git_keep/objects/a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d new file mode 100644 index 0000000000000000000000000000000000000000..0179f5cc4466bfac7b1a00bf7824fee9e9e435fe GIT binary patch literal 182 zcmV;n07?IN0gcbGYC|y$h2hTkDZB@YY)i6TN(p4j)Mt=wi5BYIaN|NBzh1g`J$%D| z+CIkTbOH0zJXBrQ3dW7Gs{{ZP&Zt6Ug>tFMSEQa;c)QD?x9Q9mj>;iugpjxyD&-6w ziV7yeh@CBn{(0y%wNTBZ08l0a_C6?8V9ORMbIgXAHu;_(`{6EE_jzc_jHUti8iK1hvR2mk;8 literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/a6/ed180e13649885eed39866051ca0e25c0ad6ac b/test/integration/stashDrop/expected/repo/.git_keep/objects/a6/ed180e13649885eed39866051ca0e25c0ad6ac deleted file mode 100644 index 20498e40d227b9506ac3b8173c7e3f2b55721dee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmV;u07CzG0gaElY6LM1MN`jLs1F3o57}Nq2y8W7y3`s=A`9!CW#T|SKW?^9dpMWN zX?yRN0iOKRI8-4uwaTVU9I}*Z)hG2)H_OPPZKEJ)E-!aJ^fo}ekCl=yrlGk^OjOz= zta)R!f`JSPNO|S{[{X$Yt]]V?+ \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/d2/2496528fe3c076a668c496ae7ba1f8136f1614 b/test/integration/stashDrop/expected/repo/.git_keep/objects/d2/2496528fe3c076a668c496ae7ba1f8136f1614 deleted file mode 100644 index ce64e7f52..000000000 --- a/test/integration/stashDrop/expected/repo/.git_keep/objects/d2/2496528fe3c076a668c496ae7ba1f8136f1614 +++ /dev/null @@ -1,3 +0,0 @@ -x1 -0 @>B8BC%\#tV<})gEpg=ɝ-0V: \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/e0/61c8716830532562f919dcb125ea804f87ca2b b/test/integration/stashDrop/expected/repo/.git_keep/objects/e0/61c8716830532562f919dcb125ea804f87ca2b deleted file mode 100644 index 57420d0275bc06c633987c2b5497508b4547435c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmV;n07?IN0gcZ=Y6CG0h2gH}6y67dWy`XrloH4)tDHf$WLl^*Vd6rMUvIL{_UGfl zt6T5i!v*BGv70%fQY!nksx)QFwXHGu(n?0gQn(4PjL6GfcDoIyA>c|WaI;u_CL!WF zi&!oKjUiG40(^SXsZ`jDX#({iiRPrWm>VL1XwjT%TI6?pZM!>P+{gKHvOnqfA3N5q ke>xzH9)Nvx2LSJvS?7siFY@Jjb6pZ(OfN`glAR=RxJ3<_Wt2LI zSY8FaU}Q(ebobHNlgzWnZ6hwJP%JU#%+ddb3Yyng^E%0Q|J)BaE%0($-t0%(?P5>5 sw^u+;F(8(}@Q4_~H0U_d?VtMevAn~6g(hF4dA@%DKVOV~0rmMzBDT9=umAu6 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae b/test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae new file mode 100644 index 0000000000000000000000000000000000000000..3fd7331e6863cdf73414cfd8d95f226ceead0fa3 GIT binary patch literal 146 zcmV;D0B!$x0gaA93d0}}0DJZo-V0^jsJnqu3OVH&#$9P3)(|Z8`OOo0oM8@=Tdixi zZp2GJRPCtDi9j+7qX?$56baxcY9Us~jKh*Kn>`)+?v|C%i$@=W^B#Z-viNX97>GHR zfTUVRlRo{`4m-{EKFv@4rn+x>%dI}Fiva-86WJ>ufI00s)%DNZlyy@yKQH$Zo$hpc77<}jd-5APlMV`IXPJ%Q=Nk{+y%w(u zYTJAN7!X+>#^DZ0QjDC7kXB46DM(&J6=5wZT#T4=6J2h0_;o;?dYv6@PFu)gBD&4Q zJQu^JNYYS{|2(=hwv-yx8bw(nDN)Ws?RQAg+e&LLi+zpv{ebfYp3j$8|F(Yn^rvm_ kFMz@n5H$!qB8ITcbe6V$u?0Msu>Py?J)1^@s6 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/refs/heads/master b/test/integration/stashDrop/expected/repo/.git_keep/refs/heads/master index 0a7c9cc2b..7bd761f02 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/refs/heads/master +++ b/test/integration/stashDrop/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -d22496528fe3c076a668c496ae7ba1f8136f1614 +f1963e622e30276cf4e5880109ea475434d6f2ae diff --git a/test/integration/stashDrop/expected/repo/.git_keep/refs/stash b/test/integration/stashDrop/expected/repo/.git_keep/refs/stash deleted file mode 100644 index 0a4ae7ab5..000000000 --- a/test/integration/stashDrop/expected/repo/.git_keep/refs/stash +++ /dev/null @@ -1 +0,0 @@ -f4f81b6542e98a2f80269449674b0f8f454b74b0 diff --git a/test/integration/stashDrop/expected/repo/file1 b/test/integration/stashDrop/expected/repo/file1 index a5bce3fd2..c7c7da3c6 100644 --- a/test/integration/stashDrop/expected/repo/file1 +++ b/test/integration/stashDrop/expected/repo/file1 @@ -1 +1 @@ -test1 +hello there diff --git a/test/integration/stashDrop/expected/repo/file2 b/test/integration/stashDrop/expected/repo/file2 index c7c7da3c6..180cf8328 100644 --- a/test/integration/stashDrop/expected/repo/file2 +++ b/test/integration/stashDrop/expected/repo/file2 @@ -1 +1 @@ -hello there +test2 diff --git a/test/integration/stashDrop/expected/repo/file3 b/test/integration/stashDrop/expected/repo/file3 new file mode 100644 index 000000000..c7c7da3c6 --- /dev/null +++ b/test/integration/stashDrop/expected/repo/file3 @@ -0,0 +1 @@ +hello there diff --git a/test/integration/stashDrop/recording.json b/test/integration/stashDrop/recording.json index c61c97b24..fb15d10b1 100644 --- a/test/integration/stashDrop/recording.json +++ b/test/integration/stashDrop/recording.json @@ -1 +1 @@ -{"KeyEvents":[{"Timestamp":1329,"Mod":0,"Key":256,"Ch":32},{"Timestamp":2003,"Mod":0,"Key":256,"Ch":83},{"Timestamp":2466,"Mod":0,"Key":258,"Ch":0},{"Timestamp":2754,"Mod":0,"Key":13,"Ch":13},{"Timestamp":2979,"Mod":0,"Key":256,"Ch":97},{"Timestamp":3051,"Mod":0,"Key":256,"Ch":115},{"Timestamp":3081,"Mod":0,"Key":256,"Ch":100},{"Timestamp":3386,"Mod":0,"Key":13,"Ch":13},{"Timestamp":3961,"Mod":0,"Key":258,"Ch":0},{"Timestamp":4186,"Mod":0,"Key":256,"Ch":32},{"Timestamp":4906,"Mod":0,"Key":256,"Ch":83},{"Timestamp":5394,"Mod":0,"Key":258,"Ch":0},{"Timestamp":5626,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6002,"Mod":0,"Key":256,"Ch":100},{"Timestamp":6066,"Mod":0,"Key":256,"Ch":115},{"Timestamp":6113,"Mod":0,"Key":256,"Ch":97},{"Timestamp":6378,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6842,"Mod":0,"Key":259,"Ch":0},{"Timestamp":7074,"Mod":0,"Key":259,"Ch":0},{"Timestamp":7315,"Mod":0,"Key":259,"Ch":0},{"Timestamp":7714,"Mod":0,"Key":258,"Ch":0},{"Timestamp":8114,"Mod":0,"Key":256,"Ch":100},{"Timestamp":8546,"Mod":0,"Key":13,"Ch":13},{"Timestamp":9379,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":272,"Height":74}]} \ No newline at end of file +{"KeyEvents":[{"Timestamp":1450,"Mod":0,"Key":256,"Ch":32},{"Timestamp":2169,"Mod":0,"Key":256,"Ch":83},{"Timestamp":4172,"Mod":0,"Key":256,"Ch":115},{"Timestamp":5203,"Mod":0,"Key":256,"Ch":115},{"Timestamp":5380,"Mod":0,"Key":256,"Ch":116},{"Timestamp":5453,"Mod":0,"Key":256,"Ch":97},{"Timestamp":5555,"Mod":0,"Key":256,"Ch":103},{"Timestamp":5626,"Mod":0,"Key":256,"Ch":101},{"Timestamp":5763,"Mod":0,"Key":256,"Ch":100},{"Timestamp":6115,"Mod":0,"Key":13,"Ch":13},{"Timestamp":7300,"Mod":0,"Key":256,"Ch":32},{"Timestamp":8683,"Mod":0,"Key":256,"Ch":83},{"Timestamp":9863,"Mod":0,"Key":13,"Ch":13},{"Timestamp":11038,"Mod":0,"Key":256,"Ch":97},{"Timestamp":11123,"Mod":0,"Key":256,"Ch":115},{"Timestamp":11167,"Mod":0,"Key":256,"Ch":100},{"Timestamp":12056,"Mod":0,"Key":13,"Ch":13},{"Timestamp":13353,"Mod":0,"Key":256,"Ch":53},{"Timestamp":14713,"Mod":0,"Key":256,"Ch":100},{"Timestamp":15919,"Mod":0,"Key":13,"Ch":13},{"Timestamp":17181,"Mod":0,"Key":256,"Ch":50},{"Timestamp":18431,"Mod":0,"Key":256,"Ch":53},{"Timestamp":19203,"Mod":0,"Key":256,"Ch":103},{"Timestamp":20228,"Mod":0,"Key":13,"Ch":13},{"Timestamp":20771,"Mod":0,"Key":256,"Ch":50},{"Timestamp":21700,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":56}]} \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD index 8e8f6abd0..32bd1b5cc 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -8634432ef171aa4b8d8e688fc1e5645245bf36ac +605615b78c181314a7a019e116647bfdf9127c94 diff --git a/test/integration/stashPop/expected/repo/.git_keep/config b/test/integration/stashPop/expected/repo/.git_keep/config index 8ae104545..596ebaeb3 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/config +++ b/test/integration/stashPop/expected/repo/.git_keep/config @@ -3,8 +3,6 @@ filemode = true bare = false logallrefupdates = true - ignorecase = true - precomposeunicode = true [user] email = CI@example.com name = CI diff --git a/test/integration/stashPop/expected/repo/.git_keep/index b/test/integration/stashPop/expected/repo/.git_keep/index index 1c25c6cf67833025f6f6363320d79391c166569b..0850077fddf2ff6ed10d14e2a02b11809beaa05e 100644 GIT binary patch delta 93 zcmbQq)W&4s;u+-3z`(!+#LP+2Hy)|(k1B@IKrtzXPp2Xo7#f!VrC)&XM1!1(VGO*Dw$!(s`8m($z1vP5EJE`m<1Q>rUL*PZyl5X delta 147 zcmZo;n#p9~;u+-3z`(!+#LS8B;zbqz3f}_J3X^&Z7#SE?nUvVw85kOuFfcHF1*#F5 zXpo};l2^H#a|J{z*R7ccRp*7Q4ycxG;t_Q{Nd{vD1Fm@;%Xv@S(7m*N|5e7a_Z1I2 dl=tZLeF%7MDEoAM7=xb6qWzm!?Gnoj006hEFChQ` diff --git a/test/integration/stashPop/expected/repo/.git_keep/info/exclude b/test/integration/stashPop/expected/repo/.git_keep/info/exclude index 8e9f2071f..a5196d1be 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/info/exclude +++ b/test/integration/stashPop/expected/repo/.git_keep/info/exclude @@ -4,4 +4,3 @@ # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ -.DS_Store diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD b/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD index 36f584bdf..6740e556b 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD @@ -1,7 +1,5 @@ -0000000000000000000000000000000000000000 8b081dcb0e1fd5e9862d1aa6891b805b101abe7b CI 1643011851 +1100 commit (initial): file0 -8b081dcb0e1fd5e9862d1aa6891b805b101abe7b 3ae4e5d4920afbb1bac23426afb237524c8dbe41 CI 1643011851 +1100 commit: file1 -3ae4e5d4920afbb1bac23426afb237524c8dbe41 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011852 +1100 commit: file2 -8634432ef171aa4b8d8e688fc1e5645245bf36ac 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011854 +1100 reset: moving to HEAD -8634432ef171aa4b8d8e688fc1e5645245bf36ac 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011854 +1100 reset: moving to HEAD -8634432ef171aa4b8d8e688fc1e5645245bf36ac 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011856 +1100 reset: moving to HEAD -8634432ef171aa4b8d8e688fc1e5645245bf36ac 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011856 +1100 reset: moving to HEAD +0000000000000000000000000000000000000000 2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 CI 1650186466 +0200 commit (initial): file0 +2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 0138b2ed57b0412b2c2244a267fc1396f06ac287 CI 1650186466 +0200 commit: file1 +0138b2ed57b0412b2c2244a267fc1396f06ac287 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186466 +0200 commit: file2 +605615b78c181314a7a019e116647bfdf9127c94 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186469 +0200 reset: moving to HEAD +605615b78c181314a7a019e116647bfdf9127c94 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186471 +0200 reset: moving to HEAD diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master index 5493552ad..f83a90cae 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 8b081dcb0e1fd5e9862d1aa6891b805b101abe7b CI 1643011851 +1100 commit (initial): file0 -8b081dcb0e1fd5e9862d1aa6891b805b101abe7b 3ae4e5d4920afbb1bac23426afb237524c8dbe41 CI 1643011851 +1100 commit: file1 -3ae4e5d4920afbb1bac23426afb237524c8dbe41 8634432ef171aa4b8d8e688fc1e5645245bf36ac CI 1643011852 +1100 commit: file2 +0000000000000000000000000000000000000000 2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 CI 1650186466 +0200 commit (initial): file0 +2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 0138b2ed57b0412b2c2244a267fc1396f06ac287 CI 1650186466 +0200 commit: file1 +0138b2ed57b0412b2c2244a267fc1396f06ac287 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186466 +0200 commit: file2 diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash index 4a66ec164..ca9920f6e 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash +++ b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash @@ -1 +1 @@ -0000000000000000000000000000000000000000 437b9b0ca941f1e12c8b45958f5d6ebd11cdd41a CI 1643011856 +1100 On master: asd +0000000000000000000000000000000000000000 5e6c498354e93f4049e80254810f4577b180a8ab CI 1650186471 +0200 On master: asd diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 b/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 new file mode 100644 index 000000000..d4936dcdf --- /dev/null +++ b/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 @@ -0,0 +1,2 @@ +xK +0@] 2M1 SJoc2wn9UlgR`NjV&R9$G1mt`}h`*_tw^- zF`3KgBD%m7m=iN3Vj@#)sF^29z7{LSLU73ihw7j%@1bLch=nr<*5W0_UgOswTDɍkX[nfPID)znjfTj,đ$V|&MdAՆyr lܿn-PDe 'D=~cJ) \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab b/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab new file mode 100644 index 000000000..a8d3c8495 --- /dev/null +++ b/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab @@ -0,0 +1,2 @@ +xϱj1 fWZBW ZiEϜG{c)[y9f"Jͭ +AFR% ,m84JA) X=YUY(BszTƔM=/w|m;_r?v,[tPf?xeİrӿI \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 b/test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 new file mode 100644 index 0000000000000000000000000000000000000000..22dbe19c0e7a5631d20297911d48cf478d161106 GIT binary patch literal 147 zcmV;E0Brww0gaA93d0}}0DJZo-V0@2&ANe73OVH&x~?=3n-DDY`OOo09R_A(Yi;S) zjdMq&2cSX7pK5%$^Q?cMHyQMlD0k5FBO{#1Ilvtm6Dg z6(|XEH0je{+hM2K-lzGg-_-V1Z?d(Ab#w-p0+GD}0+^GYQ(gbmOo5b8=UT@G z0sCEB%|I;q!kK9>4c?QokZFwN80DCHOcaNnmEEGNO$~%QqApm$9#tvHAjTpkqeZ3| zD5lb}W~cA=m{+*n;e5Ma?W1*h+9A*N0?5>PM2QT0MDN{3x2a}->Ta9{`@lRw)z?;? PepgV&rv>)~SFb?Z2l7$U diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/86/34432ef171aa4b8d8e688fc1e5645245bf36ac b/test/integration/stashPop/expected/repo/.git_keep/objects/86/34432ef171aa4b8d8e688fc1e5645245bf36ac deleted file mode 100644 index 24d309c9e22283e00444c6d7cba25ab5b777b465..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gaA93d0}}MZ5MC?hC~kHBO+ELRLA(s3Q%;8iIu$zaF8>_j!C?YPD`% z!;F`His)I0IGCI$6XuLuV#(e>n4|;}AVM1xCUx*B@2)M26QA9TW~dP&C$tWy0ce9q zH;$q>Q2gnycIsu-_ho&`m+P_1Ew%d4Fga@g$fLdj7^B8IqPqO4tFrBa>IVWKI$b3r BMRWiF diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 b/test/integration/stashPop/expected/repo/.git_keep/objects/8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 new file mode 100644 index 0000000000000000000000000000000000000000..5634f803139e66529b1034585c9d420b3b391878 GIT binary patch literal 183 zcmV;o07(CM0gcZ+Y6CG4K;hJT3iXDd(a($&f-$&ql{3spGb9js%~}Q@-`k{5`}msI z)-isj3#q)#P1WV5R@s!1BlS|PhO8l}7y)-}g0X{nT5i1QbvpDJAq$lT1tKIS_D~f7 zF_Boe3V~Wpf1XQXC}bGLXOR>QYBOm?w6j#w9%G=;7kU@!H^;;cziuVw~r6rQcGDI ziR!KG00}y{A$spqlzwm_3BY5_n%Tybt%rJ5Yr?O6>Q2*4&uM<+2<5xsvDES+aoVxS Y*bCi7n9WtMNyDGqV!Z diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/8b/d86c566a91e9f8ace9883f7017f562c971b3f7 b/test/integration/stashPop/expected/repo/.git_keep/objects/8b/d86c566a91e9f8ace9883f7017f562c971b3f7 deleted file mode 100644 index 4541e3cc903ca4b278638483bf5d52842ef6e4ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmV;n07?IN0gcbGY6CG0fZ@*f6y5_xwq#i@r35l%>N7~TObc}`T&~c^?=9WC{(Q^d z);T}-kVu~P%{?%iHG$f?jxJo=6LWP`+dP<2Kp($22K`1Dt)M1Uy9#M-AR^q}lj?S`;k#k_r*0Nf|CQAd-Jz*amCuHo<1{XAXK_s#+ z<|%tLE_tiMr#$wEzGB literal 0 HcmV?d00001 diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/b0/00623a052b4d2226c43ba396b830738799740e b/test/integration/stashPop/expected/repo/.git_keep/objects/b0/00623a052b4d2226c43ba396b830738799740e deleted file mode 100644 index 8ebf85670da8fb2010e03ed16d2ca9dd0ae10270..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmV;T0A2rh0gaA93c@fD06pgwdlw{|Y}2iX2tD-~n{Be#uh~=^2i#Pb3$zb zHIAB?eUN12Q=iKQ{Q$Rqc<3%=ed#4Fv@%2":7t>}-'XgoM} \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/e0/0e994a4acb98bcbe93ad478e09dcb3bed6b26c b/test/integration/stashPop/expected/repo/.git_keep/objects/e0/0e994a4acb98bcbe93ad478e09dcb3bed6b26c deleted file mode 100644 index 026ea2da19fad2fe2217aa5edb029d408feebac3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmV;v073tF0gaEbY6LM11yk==xDNzbl4bh{A#l}p=~BzKOb*Vs$Hswtezv(j?RzuD z)NPE*bSU^VcQY5N^{m}glwwP{XAFjHrAM#LY7uI_LtO5<+ikie#7t=2AHQ-*Et#a$ ztG6H=kVEMtS|5A?06|g+ShyjgRHmYor6ht#Ddrp*Y|)?jwe9Y_y4UmiZofM2S9_`3 scynHu!21-~J$nzZ9P1G=?VtGaxqi6q=7xSB&gs$M`sHf)2SZ#nG>CH!br<&ekU`@-+Ni_g!!3RL*Ai&Z+kN>Ks-uMy`8pV_EbRod2rTZ$x97BX6 ztSnS>BzS%pH7M;n_j1*u@T&fnSK9L})FI{=fpsTEaxn@EZ*qpwKtYhdKBM`I=lJnk zHYqQ1j0!#_&l0YDRwvRaodq$+7;H{RkgF?@!N#C#s9?ZV@-y7w`~;8HtAt%N-tvbW JWZgQY5CG)rR=5BF literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/info/exclude b/test/integration/stashStagedChanges/expected/repo/.git_keep/info/exclude new file mode 100644 index 000000000..a5196d1be --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD new file mode 100644 index 000000000..a5965cba2 --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD @@ -0,0 +1,5 @@ +0000000000000000000000000000000000000000 4062b34fff18c4453edded2da4f0737176daaa4d CI 1650002424 +0200 commit (initial): file0 +4062b34fff18c4453edded2da4f0737176daaa4d b160a56c2580f8cc1e5432f32212f83395459997 CI 1650002424 +0200 commit: file1 +b160a56c2580f8cc1e5432f32212f83395459997 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002424 +0200 commit: file2 +2b515d20a02212d14a519d82917b791e01ebc659 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002430 +0200 reset: moving to HEAD +2b515d20a02212d14a519d82917b791e01ebc659 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002430 +0200 reset: moving to HEAD diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master new file mode 100644 index 000000000..8e5dd5d7f --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -0,0 +1,3 @@ +0000000000000000000000000000000000000000 4062b34fff18c4453edded2da4f0737176daaa4d CI 1650002424 +0200 commit (initial): file0 +4062b34fff18c4453edded2da4f0737176daaa4d b160a56c2580f8cc1e5432f32212f83395459997 CI 1650002424 +0200 commit: file1 +b160a56c2580f8cc1e5432f32212f83395459997 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002424 +0200 commit: file2 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 new file mode 100644 index 0000000000000000000000000000000000000000..f74bf2335bbc5999ad0faff94fb04165d8ab5c7d GIT binary patch literal 21 ccmb~ZE#08nZNMgRZ+ literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 new file mode 100644 index 0000000000000000000000000000000000000000..79fcadf67fdecb0f0cffca7ff27b2ae5c031e4d7 GIT binary patch literal 50 zcmV-20L}k+0V^p=O;s>9W-v4`Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U I033l4YT~68jQ{`u literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/28/59c9a5f343c80929844d6e49d3792b9169c4da new file mode 100644 index 0000000000000000000000000000000000000000..ea6cd38669c9f73920911d2efdafe0a5b6bad32b GIT binary patch literal 85 zcmV-b0IL6Z0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h rTSy8F8IB*nWs~wE$Ee^_@+{%XXLTZ-(pg9fj0h<(#;O1SVZb>0{5mDa literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 new file mode 100644 index 0000000000000000000000000000000000000000..0f1ad7e2f6b933bb926fc3f8af2f726d07238323 GIT binary patch literal 148 zcmV;F0Biqv0gcX03c@fDKw;N8MfQSBCVvwU5xVLz(#Zr1jV&R9$G1mt`}h`*_tw^- zO~T9QB033Cj!>8iVJVpFQi}%@gVac3h|n&Ktd88}J@jG%WFHtkK_zA*-dU^`(O@NO zlXpI)6jlC=*WUFs>-#i6<(u2F$&L5+&?a~QK!;9W0Rhxm9Qa#hz&Q2hW)yEwy| CdPSB1 literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 new file mode 100644 index 0000000000000000000000000000000000000000..1b07a5cbc28f199fff1ccc844654d961d5b1ef01 GIT binary patch literal 160 zcmV;R0AK%j0gaA93c@fD06pgwdlzJPleCS92tD-~+hl_U)0SGH&o>wEUWXZ&xRf&O zz|@}hO%+_WNExlPIYciuhE9Yjq=cC|Ct0J->^if`rgIHPPd+gUG7~3q;;Y(s7)>Smgg9E4M4WNyG$nl literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da new file mode 100644 index 0000000000000000000000000000000000000000..06c9cb73d7a8ed6841ce407bd6bb15235c8fa15c GIT binary patch literal 21 ccmb|y2)08mZ`J^%m! literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d new file mode 100644 index 0000000000000000000000000000000000000000..2fe4f5acdc5783bf6b3760d173ab1c8c009e0c81 GIT binary patch literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{8K|012+}V+tYUB*W-q7JzT5SYb`MXn+MXb@9_*ZKr9b`!qlCjrG0Zvb6dj@dGof YsnMC0*&X$mbo|L(SvRoz0oCp+%zP_4y8r+H literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/4f/301f03a7f9c5a3c98aa219dd0f184afec3f248 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/4f/301f03a7f9c5a3c98aa219dd0f184afec3f248 new file mode 100644 index 0000000000000000000000000000000000000000..6dc24b6d3f0861996a9ca282c858243754710a62 GIT binary patch literal 107 zcmV-x0F?iD0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8IB*nWs~wE$Ee^_@+{%XXLTZ-(pg9fj2I+%ei$_ literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c new file mode 100644 index 0000000000000000000000000000000000000000..0e95eb06dda15fe1901a7942e7954b700b36bfa9 GIT binary patch literal 101 zcmV-r0Gj`J0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gv2WLwJR>kD literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 new file mode 100644 index 0000000000000000000000000000000000000000..285df3e5fbab12262e28d85e78af8a31cd0024c1 GIT binary patch literal 21 ccmb`~^A08nuUMF0Q* literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 new file mode 100644 index 0000000000000000000000000000000000000000..333da1d7e89c078282ccfa1e553f903344f3f220 GIT binary patch literal 147 zcmV;E0Brww0gcW<3c@fDKvCB@MfQSBCey@#h|pD!F`b!U!PrtFczk;Vx1YE8vbMH# z9}1rOZsrwo5-B23SeQ{`siE;2>+Z+N-^S@-UvAsWF0!_}4`~1ZBqV#fU0q%l+z;EDIvQSg BM?e4o literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a new file mode 100644 index 0000000000000000000000000000000000000000..ee4385f12cb5e2fea6044749c3960a2c40be7b9e GIT binary patch literal 28 kcmb4eAGlPAM9PI~BiJ!N8W-osW20IwDcng9R* literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 new file mode 100644 index 000000000..2e9066287 --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 @@ -0,0 +1,2 @@ +x+)JMU03c040031QHI5`ֶww.hT[H + yW5Ɨ(| ^-W(x9 \ No newline at end of file diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e new file mode 100644 index 0000000000000000000000000000000000000000..6524d6dfdd5728432601ba48d1de6655068bd7c1 GIT binary patch literal 187 zcmV;s07Uf2)J^UXIN=halrDKI|cIikt?@prWn2{ zrmnqz4?{k_j7` file0 +git add . +git commit -am file0 + +echo test1 > file1 +git add . +git commit -am file1 + +echo test2 > file2 +git add . +git commit -am file2 + +echo "hello there" > file1 +echo "hello there" > file2 +echo "hello there" > file3 diff --git a/test/integration/stashStagedChanges/test.json b/test/integration/stashStagedChanges/test.json new file mode 100644 index 000000000..4f9314caa --- /dev/null +++ b/test/integration/stashStagedChanges/test.json @@ -0,0 +1 @@ +{ "description": "Stashing some files", "speed": 5 } diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/COMMIT_EDITMSG b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/COMMIT_EDITMSG new file mode 100644 index 000000000..a7a2e0039 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/COMMIT_EDITMSG @@ -0,0 +1 @@ +[lazygit] stashing unstaged changes diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/FETCH_HEAD b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/FETCH_HEAD new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/HEAD b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/HEAD new file mode 100644 index 000000000..cb089cd89 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/ORIG_HEAD new file mode 100644 index 000000000..a25f0f809 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/ORIG_HEAD @@ -0,0 +1 @@ +ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/config b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/config new file mode 100644 index 000000000..596ebaeb3 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/config @@ -0,0 +1,8 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[user] + email = CI@example.com + name = CI diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/description b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/description new file mode 100644 index 000000000..498b267a8 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/index b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/index new file mode 100644 index 0000000000000000000000000000000000000000..6d965fc2eeed7c17d2a23738e2122ba3769aceed GIT binary patch literal 262 zcmZ?q402{*U|<4b=A=k2cFDZuRWKSTCdKgKa^rneYa(=u~X4S-r07(n`^tfY!zG}N56Xy))7KYq(5r9FO4)R78 literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/info/exclude b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/info/exclude new file mode 100644 index 000000000..a5196d1be --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD new file mode 100644 index 000000000..c1a19352a --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD @@ -0,0 +1,6 @@ +0000000000000000000000000000000000000000 84988130b443577e2afc62d4103f92fcbed33add CI 1650002439 +0200 commit (initial): file0 +84988130b443577e2afc62d4103f92fcbed33add c884f894908d3042f54995005b8e3445958b2fcc CI 1650002439 +0200 commit: file1 +c884f894908d3042f54995005b8e3445958b2fcc 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002439 +0200 commit: file2 +74244487ab29dc413ae1f98e4fa40256a0787212 ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 commit: [lazygit] stashing unstaged changes +ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 reset: moving to HEAD +ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002447 +0200 reset: moving to HEAD^ diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master new file mode 100644 index 000000000..02ecdf692 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -0,0 +1,5 @@ +0000000000000000000000000000000000000000 84988130b443577e2afc62d4103f92fcbed33add CI 1650002439 +0200 commit (initial): file0 +84988130b443577e2afc62d4103f92fcbed33add c884f894908d3042f54995005b8e3445958b2fcc CI 1650002439 +0200 commit: file1 +c884f894908d3042f54995005b8e3445958b2fcc 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002439 +0200 commit: file2 +74244487ab29dc413ae1f98e4fa40256a0787212 ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 commit: [lazygit] stashing unstaged changes +ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002447 +0200 reset: moving to HEAD^ diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 new file mode 100644 index 0000000000000000000000000000000000000000..f74bf2335bbc5999ad0faff94fb04165d8ab5c7d GIT binary patch literal 21 ccmb~ZE#08nZNMgRZ+ literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 new file mode 100644 index 0000000000000000000000000000000000000000..79fcadf67fdecb0f0cffca7ff27b2ae5c031e4d7 GIT binary patch literal 50 zcmV-20L}k+0V^p=O;s>9W-v4`Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U I033l4YT~68jQ{`u literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da new file mode 100644 index 0000000000000000000000000000000000000000..06c9cb73d7a8ed6841ce407bd6bb15235c8fa15c GIT binary patch literal 21 ccmb|y2)08mZ`J^%m! literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d new file mode 100644 index 000000000..205ac4dc4 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d @@ -0,0 +1,2 @@ +xj0DsW=P6ZK) ]ie"9 +${nxayБU 9Eo]HñCIȓOO͍W-4zmUl AuJtAe(uZV8tU?’`{DC4mRU\>`)ykϗ\ [me#N \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 new file mode 100644 index 0000000000000000000000000000000000000000..6a6f2436255b8a831b87262c4d030c7d63af046b GIT binary patch literal 81 zcmV-X0IvUd0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U nND2%Yjvv2elky_RsNhrbEaA#$bt0Y8Sx5?uuqprm;XNz0$Rj03 literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 new file mode 100644 index 000000000..c84b87a17 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 @@ -0,0 +1,3 @@ +x+)JMUd040031QHI5`ֶww.hT[H + e"ǨS,gu"YH +$x~5(;rբW-Ж+^ \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 new file mode 100644 index 0000000000000000000000000000000000000000..3a76ae79effe1c72a419c2210cf38012f46a303c GIT binary patch literal 147 zcmV;E0Brww0gaA93d0}}0DJZo-V0@2HQ9wy3OVH&x~?=3n-DDY`OOo09cEx;Yi;S) zF<$ziYFUZW2t}w6mV&9~S|Ye{&^nSjBJ^2M%$^Q?cPm7p5(fq<9s<@Fm?J>Uq&|em zkup{hlRo{m9d?@SeVU*8O>JNGCR=-0H=F@r@NBPu0Oq9URM$UsQU@!4Q!YJbpbww~r6rQcGDI zS&>^i0J7-dhp4J4+J5jMS%9B0OJ)~Sb_!7uXTrCA>Os>?uW5ec3}xT&SZW!``ktAc YbV_%2%;u`sq~T9)^16Y|57)jc*!@d5lmGw# literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c new file mode 100644 index 0000000000000000000000000000000000000000..0e95eb06dda15fe1901a7942e7954b700b36bfa9 GIT binary patch literal 101 zcmV-r0Gj`J0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gv2WLwJR>kD literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 new file mode 100644 index 0000000000000000000000000000000000000000..285df3e5fbab12262e28d85e78af8a31cd0024c1 GIT binary patch literal 21 ccmb`~^A08nuUMF0Q* literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 new file mode 100644 index 0000000000000000000000000000000000000000..9eb55491472fd9e6f7fe5d602e168001cf8a1a52 GIT binary patch literal 185 zcmV;q07n0K0gcZwY6CG4M&Z-F%j?zUcsexd#YQSMH|DN$cx literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a new file mode 100644 index 0000000000000000000000000000000000000000..ee4385f12cb5e2fea6044749c3960a2c40be7b9e GIT binary patch literal 28 kcmb4eAGlPAM9PI~BiJ!N8W-osW20IwDcng9R* literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc new file mode 100644 index 0000000000000000000000000000000000000000..92422c064dd6d8da7d13d1eea47a39ec57021bbf GIT binary patch literal 148 zcmV;F0Biqv0gcWv3d1lAK+(=Vh4(^{CC84SltQK)Ly=_~NSY8_=<%B)bp5>H>$a|Q z^MUcw4l`dMCskGj78SulsZN@OyIRPQAVrQT2Di&$@87^%zIP^u;@F#uJ@ zs*@EWDaFaBy|%*-qrVU1)4sCqi`{fvA3mfG05B5!Dp9izPwwixSa3g*wK<@8 CD@UvV literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 new file mode 100644 index 000000000..2e9066287 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 @@ -0,0 +1,2 @@ +x+)JMU03c040031QHI5`ֶww.hT[H + yW5Ɨ(| ^-W(x9 \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b new file mode 100644 index 0000000000000000000000000000000000000000..b7c7df645bc8e489f7be3691c80d36c37b6b6b2a GIT binary patch literal 176 zcmV;h08jsT0gaA9YQr!PMZ4B1W?v}d$wV4K2!X6}hLXid9@&Q24z>bqPhTA&yZ;}b z$It6LPZfyhqi$y4eM(s{=3YxLKI9S)gsG&!!YN5niNY-Ishceo0u#3yG*Rp`cL%ku zL@_SPNJp<2Bv40AUv*qJxZdD&y file0 +git add . +git commit -am file0 + +echo test1 > file1 +git add . +git commit -am file1 + +echo test2 > file2 +git add . +git commit -am file2 + +echo "hello there" > file1 +echo "hello there" > file2 +echo "hello there" > file3 diff --git a/test/integration/stashUnstagedChanges/test.json b/test/integration/stashUnstagedChanges/test.json new file mode 100644 index 000000000..4f9314caa --- /dev/null +++ b/test/integration/stashUnstagedChanges/test.json @@ -0,0 +1 @@ +{ "description": "Stashing some files", "speed": 5 } From f5f6409c2743725f01258e7660c9510bf67a0efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Sun, 17 Apr 2022 12:21:43 +0200 Subject: [PATCH 4/6] Remove stash_Copy test --- .../expected/repo/.git_keep/COMMIT_EDITMSG | 1 - .../expected/repo/.git_keep/FETCH_HEAD | 0 .../stash_Copy/expected/repo/.git_keep/HEAD | 1 - .../expected/repo/.git_keep/ORIG_HEAD | 1 - .../stash_Copy/expected/repo/.git_keep/config | 10 ------- .../expected/repo/.git_keep/description | 1 - .../stash_Copy/expected/repo/.git_keep/index | Bin 281 -> 0 bytes .../expected/repo/.git_keep/info/exclude | 7 ----- .../expected/repo/.git_keep/logs/HEAD | 6 ---- .../repo/.git_keep/logs/refs/heads/master | 3 -- .../expected/repo/.git_keep/logs/refs/stash | 2 -- .../18/0cf8328022becee9aaa2577a8f84ea2b9f3827 | Bin 21 -> 0 bytes .../1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 | Bin 50 -> 0 bytes .../25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc | Bin 161 -> 0 bytes .../2e/fac8148440778cbddcd80ac7477981277dcffe | 1 - .../38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da | Bin 21 -> 0 bytes .../3b/29b35d4357f8e64cafd95140a70d7c9b25138a | Bin 162 -> 0 bytes .../4c/c838ea1466afc5be1d3bc3e7a937641ec84d7d | Bin 147 -> 0 bytes .../56/52247b638d1516506790d6648b864ba3447f68 | Bin 127 -> 0 bytes .../5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 | Bin 81 -> 0 bytes .../66/bbc809cdafd867cf9320bfb7484bb8fa898448 | 3 -- .../9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c | Bin 101 -> 0 bytes .../9f/2757166809c291c65f09778abb46cfcc4e4a0c | Bin 107 -> 0 bytes .../a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 | Bin 21 -> 0 bytes .../a6/ada9f3d895e751ec289c69913a02146c0ca844 | Bin 191 -> 0 bytes .../a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b | Bin 118 -> 0 bytes .../c7/c7da3c64e86c3270f2639a1379e67e14891b6a | Bin 28 -> 0 bytes .../d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 | 2 -- .../e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 | Bin 184 -> 0 bytes .../f3/48ff60bdbb3695f2f519db6bc115b1b8d50886 | Bin 147 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 1 - .../expected/repo/.git_keep/refs/stash | 1 - .../stash_Copy/expected/repo/file0 | 1 - .../stash_Copy/expected/repo/file1 | 1 - .../stash_Copy/expected/repo/file2 | 1 - test/integration/stash_Copy/recording.json | 1 - test/integration/stash_Copy/setup.sh | 26 ------------------ test/integration/stash_Copy/test.json | 1 - 38 files changed, 71 deletions(-) delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/COMMIT_EDITMSG delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/FETCH_HEAD delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/HEAD delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/ORIG_HEAD delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/config delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/description delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/index delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/info/exclude delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/logs/HEAD delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/heads/master delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/stash delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/2e/fac8148440778cbddcd80ac7477981277dcffe delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/38/143ad4a0fe2ab6ee53c2ef89a5d9e2bd9535da delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/3b/29b35d4357f8e64cafd95140a70d7c9b25138a delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/4c/c838ea1466afc5be1d3bc3e7a937641ec84d7d delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/56/52247b638d1516506790d6648b864ba3447f68 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/objects/f3/48ff60bdbb3695f2f519db6bc115b1b8d50886 delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/refs/heads/master delete mode 100644 test/integration/stash_Copy/expected/repo/.git_keep/refs/stash delete mode 100644 test/integration/stash_Copy/expected/repo/file0 delete mode 100644 test/integration/stash_Copy/expected/repo/file1 delete mode 100644 test/integration/stash_Copy/expected/repo/file2 delete mode 100644 test/integration/stash_Copy/recording.json delete mode 100644 test/integration/stash_Copy/setup.sh delete mode 100644 test/integration/stash_Copy/test.json diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/COMMIT_EDITMSG b/test/integration/stash_Copy/expected/repo/.git_keep/COMMIT_EDITMSG deleted file mode 100644 index 6c493ff74..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -file2 diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/FETCH_HEAD b/test/integration/stash_Copy/expected/repo/.git_keep/FETCH_HEAD deleted file mode 100644 index e69de29bb..000000000 diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/HEAD b/test/integration/stash_Copy/expected/repo/.git_keep/HEAD deleted file mode 100644 index cb089cd89..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stash_Copy/expected/repo/.git_keep/ORIG_HEAD deleted file mode 100644 index 78e4eb58e..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -f348ff60bdbb3695f2f519db6bc115b1b8d50886 diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/config b/test/integration/stash_Copy/expected/repo/.git_keep/config deleted file mode 100644 index 8ae104545..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/config +++ /dev/null @@ -1,10 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = true -[user] - email = CI@example.com - name = CI diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/description b/test/integration/stash_Copy/expected/repo/.git_keep/description deleted file mode 100644 index 498b267a8..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/index b/test/integration/stash_Copy/expected/repo/.git_keep/index deleted file mode 100644 index daebfa4ef6fda597412bbd7efb7150e89f3eec9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmZ?q402{*U|<4b=EQfgZ^R^T*Mn%075AnwGBB_*DgI7jU}#*zz`*zws73^c*(^k? zt}OVcwe4N-q4%9jZ$8>P)$|qvYg%SbssT_M9{`zy0895g{;QgL<4Z(n6i>d>g#fRX z?yC@U48e*(?vVJ}*bbt_CvN@$bx#_)dn9;%7&R#EJNI(cqVTHzmRH*IEz}|A7=g_R z337D>G9(#{6%4rMbu8ySaYOgg`u$fK%idQ!>`>mLIW7 Gp8^2b0a`u) diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/info/exclude b/test/integration/stash_Copy/expected/repo/.git_keep/info/exclude deleted file mode 100644 index 8e9f2071f..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/info/exclude +++ /dev/null @@ -1,7 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ -.DS_Store diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/logs/HEAD b/test/integration/stash_Copy/expected/repo/.git_keep/logs/HEAD deleted file mode 100644 index f95cf06ac..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/logs/HEAD +++ /dev/null @@ -1,6 +0,0 @@ -0000000000000000000000000000000000000000 a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b CI 1643011553 +1100 commit (initial): file0 -a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b 4cc838ea1466afc5be1d3bc3e7a937641ec84d7d CI 1643011553 +1100 commit: file1 -4cc838ea1466afc5be1d3bc3e7a937641ec84d7d f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011553 +1100 commit: file2 -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011556 +1100 reset: moving to HEAD -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011556 +1100 reset: moving to HEAD -f348ff60bdbb3695f2f519db6bc115b1b8d50886 f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011558 +1100 reset: moving to HEAD diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/heads/master deleted file mode 100644 index d1bf421f8..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/heads/master +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b CI 1643011553 +1100 commit (initial): file0 -a7dde526f2e93ffa08897fbfca2c98ce40a8fa5b 4cc838ea1466afc5be1d3bc3e7a937641ec84d7d CI 1643011553 +1100 commit: file1 -4cc838ea1466afc5be1d3bc3e7a937641ec84d7d f348ff60bdbb3695f2f519db6bc115b1b8d50886 CI 1643011553 +1100 commit: file2 diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/stash b/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/stash deleted file mode 100644 index 3f07cf22e..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/logs/refs/stash +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 e09b4dfcd66bfa1c81feeaf67e04d55368a2b065 CI 1643011556 +1100 On master: asd -e09b4dfcd66bfa1c81feeaf67e04d55368a2b065 2efac8148440778cbddcd80ac7477981277dcffe CI 1643011558 +1100 On master: asd diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/18/0cf8328022becee9aaa2577a8f84ea2b9f3827 deleted file mode 100644 index f74bf2335bbc5999ad0faff94fb04165d8ab5c7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21 ccmb~ZE#08nZNMgRZ+ diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/1e/3e67b999db1576ad1ee08bf4f02bdf29e49442 deleted file mode 100644 index 79fcadf67fdecb0f0cffca7ff27b2ae5c031e4d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 50 zcmV-20L}k+0V^p=O;s>9W-v4`Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U I033l4YT~68jQ{`u diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc b/test/integration/stash_Copy/expected/repo/.git_keep/objects/25/abc3e66a6aa505fb0a2ceb6ad5cda0cc89ecbc deleted file mode 100644 index aab767a086e05e43391e8ca7089f727787fcb744..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlw{|WVc%p5qjz~vQ2^o(@Krt^X%NdBtxzH(lNl3_Kx$A9W4x++AqYt4gEan-vyfi32NGWVJse10IxI)+`Wt|X7 zQ6-TTVH4l&zHTs#a2dv1{>1ux|y2)08mZ`J^%m! diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/3b/29b35d4357f8e64cafd95140a70d7c9b25138a b/test/integration/stash_Copy/expected/repo/.git_keep/objects/3b/29b35d4357f8e64cafd95140a70d7c9b25138a deleted file mode 100644 index 1b8805172a383685de99180dfbc10a7b583a5a5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmV;T0A2rh0gaA93c@fD06pgwdlw{WlkG-Cgr540Y?8%-X-kdJ=bMXnufq&XTuYfN zbY?i!J!e22OCqQ_G56@5bmELpj2w+| zY?zYMM5w~2KGz+_32x)`$VVvKD_`PT?qJaNy4eolY>d{b(Kc1{pSqftln+=JDB<0z Q>+cF=e&tSm0rw7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8J6yO{8u&g#+QiDD4u+$3jtm&-B*zm7%@oj{4i=z+IQ~dszu>d{VlJw=Ub>F hDKKU@e*BhA%8MMMf=|h_ge#xbiF8V50RVKTIZZy{I~D){ diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/5c/ef9afea6a37d89f925e24ebf71adecb63d1f07 deleted file mode 100644 index 6a6f2436255b8a831b87262c4d030c7d63af046b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 81 zcmV-X0IvUd0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U nND2%Yjvv2elky_RsNhrbEaA#$bt0Y8Sx5?uuqprm;XNz0$Rj03 diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 deleted file mode 100644 index c84b87a17..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 +++ /dev/null @@ -1,3 +0,0 @@ -x+)JMUd040031QHI5`ֶww.hT[H - e"ǨS,gu"YH -$x~5(;rբW-Ж+^ \ No newline at end of file diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c b/test/integration/stash_Copy/expected/repo/.git_keep/objects/9e/88a70dc8d82dd2afbfd50176ef78e18823bc2c deleted file mode 100644 index 0e95eb06dda15fe1901a7942e7954b700b36bfa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 101 zcmV-r0Gj`J0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gv2WLwJR>kD diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c b/test/integration/stash_Copy/expected/repo/.git_keep/objects/9f/2757166809c291c65f09778abb46cfcc4e4a0c deleted file mode 100644 index 539f9791905e17d0a85ce5884381ce25c523a355..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107 zcmV-x0F?iD0V^p=O;s>7HexU|FfcPQQAo?oNi|@w5V5+l;GfpEcfp6=cP_p8Xzx_h zTSy8F8J6yO{8u&g#+QiDD4u+$3jtm&-B*zm7%?0_e#<81MUGLyr{r0}mCx!#I;FFa N6c}Sw005AMIi$QpFR=gs diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/a5/bce3fd2565d8f458555a0c6f42d0504a848bd5 deleted file mode 100644 index 285df3e5fbab12262e28d85e78af8a31cd0024c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21 ccmb`~^A08nuUMF0Q* diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/a6/ada9f3d895e751ec289c69913a02146c0ca844 deleted file mode 100644 index 0cdd88ea01086a9f483371d5a3ed867a033a7df4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 191 zcmV;w06_nE0gaElY6LM1MN`jLs1F3ow)|K^2y8W7y3~>_k%jfnGI1cEpJ}#FdpY;O zY1W`mVn`?pJ+j t+js*^F}TA{37!$1TaNXJnEFqA`CLC>yTRb^<8yj6fL*TY{{SjyPcu(sUbFxJ diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b b/test/integration/stash_Copy/expected/repo/.git_keep/objects/a7/dde526f2e93ffa08897fbfca2c98ce40a8fa5b deleted file mode 100644 index 9dcd075d6e7cddcfdb4fbf70e13e4b441151aa9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{NhYZQ5uvLdBWeC%p`oQj@c8x!ZXX}Kd24Oy zB&wHw03>h-Lyj?)EPe>72*CGTwX)5n+6axR)}&8=ZwHMNJ;v#UZ)*FB+q|_WNl?ck Y-aERAFq^ZUla4>RsmlsBKi88h)?zI;=>Px# diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a b/test/integration/stash_Copy/expected/repo/.git_keep/objects/c7/c7da3c64e86c3270f2639a1379e67e14891b6a deleted file mode 100644 index ee4385f12cb5e2fea6044749c3960a2c40be7b9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28 kcmb4eAGlPAM9PI~BiJ!N8W-osW20IwDcng9R* diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 deleted file mode 100644 index 2e9066287..000000000 --- a/test/integration/stash_Copy/expected/repo/.git_keep/objects/d0/76cc9cc09acaa2d36fbc7a95fd3e2306494641 +++ /dev/null @@ -1,2 +0,0 @@ -x+)JMU03c040031QHI5`ֶww.hT[H - yW5Ɨ(| ^-W(x9 \ No newline at end of file diff --git a/test/integration/stash_Copy/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 b/test/integration/stash_Copy/expected/repo/.git_keep/objects/e0/9b4dfcd66bfa1c81feeaf67e04d55368a2b065 deleted file mode 100644 index f57ce417b7d66e70e33708d0443088b0af141a69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmV;p07w6L0gcZ+YD6&%1mM)~6z&&-e^)>=>j(TABmo1G4QcN>{8pc2HKsdAbX file0 -git add . -git commit -am file0 - -echo test1 > file1 -git add . -git commit -am file1 - -echo test2 > file2 -git add . -git commit -am file2 - -echo "hello there" > file1 -echo "hello there" > file2 -echo "hello there" > file3 diff --git a/test/integration/stash_Copy/test.json b/test/integration/stash_Copy/test.json deleted file mode 100644 index 4f9314caa..000000000 --- a/test/integration/stash_Copy/test.json +++ /dev/null @@ -1 +0,0 @@ -{ "description": "Stashing some files", "speed": 5 } From eb038d1950909f666ff2262f83f66e5b26bf1e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Mon, 18 Apr 2022 10:29:36 +0200 Subject: [PATCH 5/6] Update stashPop and stashDrop setups --- .../stashDrop/expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stashDrop/expected/repo/.git_keep/index | Bin 262 -> 281 bytes .../stashDrop/expected/repo/.git_keep/logs/HEAD | 10 ++++------ .../repo/.git_keep/logs/refs/heads/master | 6 +++--- .../0d/b7c2bffa900585f06112e5b06f8f358638f447 | 4 ---- .../0e/84352ca8531152e477715812e6e275d986984e | 3 +++ .../1c/88e069f3e318f1e0e02188cf65d360ab4eab67 | Bin 185 -> 0 bytes .../1e/a8d05b2cbc972b48eae3181e846f82eeab50ef | Bin 118 -> 0 bytes .../2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf | 1 - .../5a/0e5672e3ccb264c401de9b84957c53138cd32c | Bin 0 -> 162 bytes .../66/bbc809cdafd867cf9320bfb7484bb8fa898448 | 3 --- .../75/a47f9be3d041530e975683cde13a62ddc65007 | 2 ++ .../87/82cd42420de6a24264417d43d50ada9aa53ad5 | Bin 162 -> 0 bytes .../8e/724d42465144007f28d45514537886f527eef9 | Bin 146 -> 0 bytes .../8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 | Bin 100 -> 0 bytes .../91/a35446b7de806c46cd84a8574b2302443a5868 | Bin 0 -> 147 bytes .../a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d | Bin 182 -> 0 bytes .../be/a28eaac7bdaf99371daf5b9a788061a12308f4 | Bin 0 -> 118 bytes .../f1/963e622e30276cf4e5880109ea475434d6f2ae | Bin 146 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- test/integration/stashDrop/expected/repo/file1 | 2 +- test/integration/stashDrop/recording.json | 2 +- test/integration/stashDrop/setup.sh | 2 ++ .../stashPop/expected/repo/.git_keep/ORIG_HEAD | 2 +- .../stashPop/expected/repo/.git_keep/index | Bin 262 -> 262 bytes .../stashPop/expected/repo/.git_keep/logs/HEAD | 9 ++++----- .../repo/.git_keep/logs/refs/heads/master | 6 +++--- .../expected/repo/.git_keep/logs/refs/stash | 1 - .../01/38b2ed57b0412b2c2244a267fc1396f06ac287 | 2 -- .../2d/79a3b4f905a83d994f860d3d91625fab899422 | 1 + .../2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 | Bin 118 -> 0 bytes .../42/ffa95ec8ce68b4bf04d4dab6c03283e61f4bda | 3 +++ .../4a/80cc4f1537d7ce4f184f346c9ba7c51bb34aee | 2 ++ .../5e/6c498354e93f4049e80254810f4577b180a8ab | 2 -- .../60/5615b78c181314a7a019e116647bfdf9127c94 | Bin 147 -> 0 bytes .../66/bbc809cdafd867cf9320bfb7484bb8fa898448 | 3 --- .../8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 | Bin 183 -> 0 bytes .../a8/4a187f63b05bb43f19cfbc8bedab97ed33272d | Bin 162 -> 0 bytes .../b8/372ee9ddb68d8b15c440d86d21b6199583fb26 | 3 --- .../f2/6e5e813038fe0c31c4733d57fcf93758736e71 | Bin 0 -> 147 bytes .../f9/bd523df842e6b52de8880c366f7d15d6bab650 | 2 ++ .../expected/repo/.git_keep/refs/heads/master | 2 +- .../stashPop/expected/repo/.git_keep/refs/stash | 1 - test/integration/stashPop/recording.json | 2 +- test/integration/stashPop/setup.sh | 2 ++ 45 files changed, 38 insertions(+), 44 deletions(-) delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/0e/84352ca8531152e477715812e6e275d986984e delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/1e/a8d05b2cbc972b48eae3181e846f82eeab50ef delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/5a/0e5672e3ccb264c401de9b84957c53138cd32c delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/75/a47f9be3d041530e975683cde13a62ddc65007 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/87/82cd42420de6a24264417d43d50ada9aa53ad5 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/91/a35446b7de806c46cd84a8574b2302443a5868 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/a2/11ee6ddb1146ba9680c58c08e40fa0162bd98d create mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/be/a28eaac7bdaf99371daf5b9a788061a12308f4 delete mode 100644 test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/2d/79a3b4f905a83d994f860d3d91625fab899422 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/42/ffa95ec8ce68b4bf04d4dab6c03283e61f4bda create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/4a/80cc4f1537d7ce4f184f346c9ba7c51bb34aee delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/66/bbc809cdafd867cf9320bfb7484bb8fa898448 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/8b/0567b6e2fd39edce87bc7ed6e7ba7868e55930 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/a8/4a187f63b05bb43f19cfbc8bedab97ed33272d delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/b8/372ee9ddb68d8b15c440d86d21b6199583fb26 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/f2/6e5e813038fe0c31c4733d57fcf93758736e71 create mode 100644 test/integration/stashPop/expected/repo/.git_keep/objects/f9/bd523df842e6b52de8880c366f7d15d6bab650 delete mode 100644 test/integration/stashPop/expected/repo/.git_keep/refs/stash diff --git a/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD index 7bd761f02..11345d776 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashDrop/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -f1963e622e30276cf4e5880109ea475434d6f2ae +91a35446b7de806c46cd84a8574b2302443a5868 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/index b/test/integration/stashDrop/expected/repo/.git_keep/index index 8256e1e361ac97a49ad43baf8076b6bed053e829..a201208c88235bb656251ccf533ad076122fa146 100644 GIT binary patch delta 162 zcmZo;n#rW%;u+-3z`(!+#LP*tidrJ>ZGkWvC?>`5S!eb{6$1^Bm}teOQ!pATcb$Qu zaS2fC3kYUln^>bLj$P@EiCfI|BpHkq47lcXEayFOL-*49{Z|>w-d8;AP~M|ca^9{z VT=7R1%e_y^PHMFuZML`{000zzH5~u| delta 143 zcmbQq)W)RZ;u+-3z`(!+#LP*NT)Ku%(!wwrC?>`5;f(l16$1?*8wY4yf-EtyMo~PH z%hH_rdIQiHFb$Lj8MAxh7ISGf23 1650002477 +0200 commit (initial): file0 -1ea8d05b2cbc972b48eae3181e846f82eeab50ef 8e724d42465144007f28d45514537886f527eef9 CI 1650002477 +0200 commit: file1 -8e724d42465144007f28d45514537886f527eef9 f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002477 +0200 commit: file2 -f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002483 +0200 reset: moving to HEAD -f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002483 +0200 reset: moving to HEAD -f1963e622e30276cf4e5880109ea475434d6f2ae f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002489 +0200 reset: moving to HEAD +0000000000000000000000000000000000000000 bea28eaac7bdaf99371daf5b9a788061a12308f4 CI 1650270506 +0200 commit (initial): file0 +bea28eaac7bdaf99371daf5b9a788061a12308f4 0e84352ca8531152e477715812e6e275d986984e CI 1650270506 +0200 commit: file1 +0e84352ca8531152e477715812e6e275d986984e 91a35446b7de806c46cd84a8574b2302443a5868 CI 1650270506 +0200 commit: file2 +91a35446b7de806c46cd84a8574b2302443a5868 91a35446b7de806c46cd84a8574b2302443a5868 CI 1650270506 +0200 reset: moving to HEAD diff --git a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master index f257dee84..06a7a9d1d 100644 --- a/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashDrop/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 1ea8d05b2cbc972b48eae3181e846f82eeab50ef CI 1650002477 +0200 commit (initial): file0 -1ea8d05b2cbc972b48eae3181e846f82eeab50ef 8e724d42465144007f28d45514537886f527eef9 CI 1650002477 +0200 commit: file1 -8e724d42465144007f28d45514537886f527eef9 f1963e622e30276cf4e5880109ea475434d6f2ae CI 1650002477 +0200 commit: file2 +0000000000000000000000000000000000000000 bea28eaac7bdaf99371daf5b9a788061a12308f4 CI 1650270506 +0200 commit (initial): file0 +bea28eaac7bdaf99371daf5b9a788061a12308f4 0e84352ca8531152e477715812e6e275d986984e CI 1650270506 +0200 commit: file1 +0e84352ca8531152e477715812e6e275d986984e 91a35446b7de806c46cd84a8574b2302443a5868 CI 1650270506 +0200 commit: file2 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 b/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 deleted file mode 100644 index 858c3f4b3..000000000 --- a/test/integration/stashDrop/expected/repo/.git_keep/objects/0d/b7c2bffa900585f06112e5b06f8f358638f447 +++ /dev/null @@ -1,4 +0,0 @@ -xA -0E]dN&]vӖǷn߰2Up6 -Q{<0*#x'?6l:W6q6Lj -O O}.a)wQLpL;,3yWyz3_%@ \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/0e/84352ca8531152e477715812e6e275d986984e b/test/integration/stashDrop/expected/repo/.git_keep/objects/0e/84352ca8531152e477715812e6e275d986984e new file mode 100644 index 000000000..ad8496326 --- /dev/null +++ b/test/integration/stashDrop/expected/repo/.git_keep/objects/0e/84352ca8531152e477715812e6e275d986984e @@ -0,0 +1,3 @@ +xM +0F] 2πU1LR"x|sW<ރm[6h/RdFf@b"[]lahՉu=:wEf!T*5DPR }k?44?K۱ʍM ` +@ :NuSWmYŨ/:2 \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 b/test/integration/stashDrop/expected/repo/.git_keep/objects/1c/88e069f3e318f1e0e02188cf65d360ab4eab67 deleted file mode 100644 index 3443df0982ed9bcf3de1eb96ff43614a4815b564..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmV;q07n0K0gcbWN(3x$9svQCqaG)w|C2B8*D&;c_~&q+`r-BqmOx7P&!JuA diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/1e/a8d05b2cbc972b48eae3181e846f82eeab50ef b/test/integration/stashDrop/expected/repo/.git_keep/objects/1e/a8d05b2cbc972b48eae3181e846f82eeab50ef deleted file mode 100644 index 8e5c770efbbe8e9d52b5872102267896ae857b92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{iPOY@h|pD!ku-m>&=4sRdi?eXZXX}Kxz)OK z64guJ0218cdWx*2G``w2j7zp5ye!9_x3-ZEp2N;s$26 Y>OEcAGMlrWla4>RDa#5r2iRaM++^lEIRF3v diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf b/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf deleted file mode 100644 index f79c6d13b..000000000 --- a/test/integration/stashDrop/expected/repo/.git_keep/objects/2c/c863db7c706a327ec5d0472ddd5d6001c6a5bf +++ /dev/null @@ -1 +0,0 @@ -x1k1 F;߯^,v(nK8W-;}2uzVwH{*+%'KAEyz z]<"ei=+đM:? 5cbBs}9dh մ&پN3-$D$.^#6'>OX0{wכwN' \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/5a/0e5672e3ccb264c401de9b84957c53138cd32c b/test/integration/stashDrop/expected/repo/.git_keep/objects/5a/0e5672e3ccb264c401de9b84957c53138cd32c new file mode 100644 index 0000000000000000000000000000000000000000..08f8bb69062ddbb536c98773cf7fd990309d8f9c GIT binary patch literal 162 zcmV;T0A2rh0gaB!3c@fD06pg`_Aba~o5w05LQnmSZL-Be)0P^cpKmYTy$&-lX(?r_ zKsKK0rV3YOmWVlVX3Cjl=!fjl#-KxFwanD?iIQ1m)49UcO5>dieay-jk_#!b6ZX;d z)F3(6i08mYKJ~S1&~|WdyQl6_)=4jEDG#v0BSrKW;EaT54th*g{ZlvNoOOp~h9d8y Qy8W(T7$+t31!HeO)t>iJ!T_*+M \ No newline at end of file diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/87/82cd42420de6a24264417d43d50ada9aa53ad5 b/test/integration/stashDrop/expected/repo/.git_keep/objects/87/82cd42420de6a24264417d43d50ada9aa53ad5 deleted file mode 100644 index e4dd3c06e3e75f509052584aa93f981426cedd8b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmV;T0A2rh0gaA93c@fD06pgwdlzK8*(Mti5qjz~l5~Rw(@Krt^XjBpvon|@+_KJ=8=dWFvQh)66Jj!1}Rr~6dXKXo%NlYU@bpvKo; QoqtzQ=7*B`0(yr*MAq3&iU0rr diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 b/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/724d42465144007f28d45514537886f527eef9 deleted file mode 100644 index 4fb5b0defc93f9ab390ae9f657dd383084363f19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmV;D0B!$x0gaAJ3c@fDKwak)*$Xn6{6R$Ms>hg2CRk`}DG@xrJ%ZcEd+>PceHq$h zyo^IcSBQZ*GeagO!fHb+94Y%&t)PYAvJ1|roep`Qp-`&e3v%HcvA858)+8gzg_cl+ ziU(ZIq?kUw?RmQ{@U0sM_RVlY`o AvH$=8 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 b/test/integration/stashDrop/expected/repo/.git_keep/objects/8e/b0f6c64dea2004a684ea55f9589b71b45d76a6 deleted file mode 100644 index 2a1928079869c5c79e37d717252c0b2c211d73fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 100 zcmV-q0Gt1K0V^p=O;xb8WH2-^Ff%bxNXyJgHDIt1vAVM0pVqc_!H3>=F1`6^?^M%U zND2%YmhO4{S2gvSTj#0s<Hr>)kd zc^v4{4l_TPY81#xvr^6!%Um)8O0Xhos7l?OD7ifz_HG_b`;I9^tFMSEQa;c)QD?x9Q9mj>;iugpjxyD&-6w ziV7yeh@CBn{(0y%wNTBZ08l0a_C6?8V9ORMbIgXAHu;_(`{6EE_jzc_jHUti8iK1hvR2mk;8 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/be/a28eaac7bdaf99371daf5b9a788061a12308f4 b/test/integration/stashDrop/expected/repo/.git_keep/objects/be/a28eaac7bdaf99371daf5b9a788061a12308f4 new file mode 100644 index 0000000000000000000000000000000000000000..3ed6793afac596828f2854312e0a90518a574585 GIT binary patch literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{jFZHGh|pD!ku-m>&=4sRJia}G+s6lQ>8-7U ztmm5sA Y$DYnC%;u=aWZ+M3>bil=57?F~+>}&42LJ#7 literal 0 HcmV?d00001 diff --git a/test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae b/test/integration/stashDrop/expected/repo/.git_keep/objects/f1/963e622e30276cf4e5880109ea475434d6f2ae deleted file mode 100644 index 3fd7331e6863cdf73414cfd8d95f226ceead0fa3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 146 zcmV;D0B!$x0gaA93d0}}0DJZo-V0^jsJnqu3OVH&#$9P3)(|Z8`OOo0oM8@=Tdixi zZp2GJRPCtDi9j+7qX?$56baxcY9Us~jKh*Kn>`)+?v|C%i$@=W^B#Z-viNX97>GHR zfTUVRlRo{`4m-{EKFv@4rn+x>%dI}Fiva-86WJ>ufI00s)%DNZlyy@yKQH$ file1 echo "hello there" > file2 echo "hello there" > file3 + +git stash save "stash to drop" diff --git a/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD index 32bd1b5cc..3823b7b86 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashPop/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -605615b78c181314a7a019e116647bfdf9127c94 +f9bd523df842e6b52de8880c366f7d15d6bab650 diff --git a/test/integration/stashPop/expected/repo/.git_keep/index b/test/integration/stashPop/expected/repo/.git_keep/index index 0850077fddf2ff6ed10d14e2a02b11809beaa05e..667aead257923c7a197135e29100fda4e57380f8 100644 GIT binary patch delta 65 zcmZo;YGYDy@eFciU|?VZV&`5SvO*$$~h6cJvN;ECl?t=xL)zS MH+LV?Gvk6p0P=ei8vpWNf{S(20gV3^g8%>k diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD b/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD index 6740e556b..f205db06f 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stashPop/expected/repo/.git_keep/logs/HEAD @@ -1,5 +1,4 @@ -0000000000000000000000000000000000000000 2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 CI 1650186466 +0200 commit (initial): file0 -2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 0138b2ed57b0412b2c2244a267fc1396f06ac287 CI 1650186466 +0200 commit: file1 -0138b2ed57b0412b2c2244a267fc1396f06ac287 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186466 +0200 commit: file2 -605615b78c181314a7a019e116647bfdf9127c94 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186469 +0200 reset: moving to HEAD -605615b78c181314a7a019e116647bfdf9127c94 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186471 +0200 reset: moving to HEAD +0000000000000000000000000000000000000000 4a80cc4f1537d7ce4f184f346c9ba7c51bb34aee CI 1650270548 +0200 commit (initial): file0 +4a80cc4f1537d7ce4f184f346c9ba7c51bb34aee f26e5e813038fe0c31c4733d57fcf93758736e71 CI 1650270548 +0200 commit: file1 +f26e5e813038fe0c31c4733d57fcf93758736e71 f9bd523df842e6b52de8880c366f7d15d6bab650 CI 1650270548 +0200 commit: file2 +f9bd523df842e6b52de8880c366f7d15d6bab650 f9bd523df842e6b52de8880c366f7d15d6bab650 CI 1650270548 +0200 reset: moving to HEAD diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master index f83a90cae..f3893791a 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 CI 1650186466 +0200 commit (initial): file0 -2ec2033bcc750a5c30ad6f00e6caa7b5848f26f0 0138b2ed57b0412b2c2244a267fc1396f06ac287 CI 1650186466 +0200 commit: file1 -0138b2ed57b0412b2c2244a267fc1396f06ac287 605615b78c181314a7a019e116647bfdf9127c94 CI 1650186466 +0200 commit: file2 +0000000000000000000000000000000000000000 4a80cc4f1537d7ce4f184f346c9ba7c51bb34aee CI 1650270548 +0200 commit (initial): file0 +4a80cc4f1537d7ce4f184f346c9ba7c51bb34aee f26e5e813038fe0c31c4733d57fcf93758736e71 CI 1650270548 +0200 commit: file1 +f26e5e813038fe0c31c4733d57fcf93758736e71 f9bd523df842e6b52de8880c366f7d15d6bab650 CI 1650270548 +0200 commit: file2 diff --git a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash deleted file mode 100644 index ca9920f6e..000000000 --- a/test/integration/stashPop/expected/repo/.git_keep/logs/refs/stash +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 5e6c498354e93f4049e80254810f4577b180a8ab CI 1650186471 +0200 On master: asd diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 b/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 deleted file mode 100644 index d4936dcdf..000000000 --- a/test/integration/stashPop/expected/repo/.git_keep/objects/01/38b2ed57b0412b2c2244a267fc1396f06ac287 +++ /dev/null @@ -1,2 +0,0 @@ -xK -0@] 2M1 SJom9C~&ZH"Ĺh jjtlդmCTXG5 K4&cUiIW5=/ӌ$Ziy\ozK^o`&|glk]Sɷt:9=P6 \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 b/test/integration/stashPop/expected/repo/.git_keep/objects/2e/c2033bcc750a5c30ad6f00e6caa7b5848f26f0 deleted file mode 100644 index 340b8157b4b713e49e22d3a517224b81a8717e9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{iPLEVB0^U^M$-JjLPJZ5;PLGd+&(^d^H%H9 zNK`NF07!6$^(lmqlXShsEC3IwXknjn@c|lCy^Ejr-VPckdW_Qx-&pq*w|T2i66;t7 YQ!~1O9Bf<=Y֪Mʟs5-, ngy8Bj \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/4a/80cc4f1537d7ce4f184f346c9ba7c51bb34aee b/test/integration/stashPop/expected/repo/.git_keep/objects/4a/80cc4f1537d7ce4f184f346c9ba7c51bb34aee new file mode 100644 index 000000000..6f2666e32 --- /dev/null +++ b/test/integration/stashPop/expected/repo/.git_keep/objects/4a/80cc4f1537d7ce4f184f346c9ba7c51bb34aee @@ -0,0 +1,2 @@ +xA + F= eF(U"`!oヷZNZ4p>rֻ5C*Rؤ\LALi~uXZI;ƳlUIǟ\ul+ \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab b/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab deleted file mode 100644 index a8d3c8495..000000000 --- a/test/integration/stashPop/expected/repo/.git_keep/objects/5e/6c498354e93f4049e80254810f4577b180a8ab +++ /dev/null @@ -1,2 +0,0 @@ -xϱj1 fWZBW ZiEϜG{c)[y9f"Jͭ -AFR% ,m84JA) X=YUY(BszTƔM=/w|m;_r?v,[tPf?xeİrӿI \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 b/test/integration/stashPop/expected/repo/.git_keep/objects/60/5615b78c181314a7a019e116647bfdf9127c94 deleted file mode 100644 index 22dbe19c0e7a5631d20297911d48cf478d161106..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gaA93d0}}0DJZo-V0@2&ANe73OVH&x~?=3n-DDY`OOo09R_A(Yi;S) zjdMq&2cSX7pK5%$^Q?cMHyQMlD0k5FBO{#1Ilvtm6Dg z6(|XEH0je{+hM2K-lzGg-_-V1Z?d(Ab#w-p0+GD}0+^GYQ(gbmOQYBOm?w6j#w9%G=;7kM1Uy9#M-AR^q}lj?S`;k#k_r*0Nf|CQAd-Jz*amCuHo<1{XAXK_s#+ z<|%tLE_tiMr#$wEzGB diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/b8/372ee9ddb68d8b15c440d86d21b6199583fb26 b/test/integration/stashPop/expected/repo/.git_keep/objects/b8/372ee9ddb68d8b15c440d86d21b6199583fb26 deleted file mode 100644 index 2a71485a3..000000000 --- a/test/integration/stashPop/expected/repo/.git_keep/objects/b8/372ee9ddb68d8b15c440d86d21b6199583fb26 +++ /dev/null @@ -1,3 +0,0 @@ -xA -0E]$DDzi2iJ㛍{/ -ݩ"" 9A n&wY+X=XfG ;ٱF/ɣq?Yv'CK.;mx6Z*jYPVnWiyQ_U@ \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/objects/f2/6e5e813038fe0c31c4733d57fcf93758736e71 b/test/integration/stashPop/expected/repo/.git_keep/objects/f2/6e5e813038fe0c31c4733d57fcf93758736e71 new file mode 100644 index 0000000000000000000000000000000000000000..9934ea2ee2397a98b386dfdfe466bcc273d509c6 GIT binary patch literal 147 zcmV;E0Brww0gaA93d0}}0DJZo-V0^bRU?#A$SKcQ*Odlh4Z%X6-#nqWVVJ{kZ*3jg zBzqZ$h%OKVb7F=>Ok|4-HFKooYjI*71WXvvsGSaZ4~;YdGgjkWERp4;39G}vDN|%` za&|}}iaz7j4?QpXJ}*!CQrkDVac>W8f(IMHBRBÑeH\#t붮sK;|o"R0שU "H=nbhHRЎJ䪵'”˟?>Ou_!E@؉S΋9y \ No newline at end of file diff --git a/test/integration/stashPop/expected/repo/.git_keep/refs/heads/master b/test/integration/stashPop/expected/repo/.git_keep/refs/heads/master index 32bd1b5cc..3823b7b86 100644 --- a/test/integration/stashPop/expected/repo/.git_keep/refs/heads/master +++ b/test/integration/stashPop/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -605615b78c181314a7a019e116647bfdf9127c94 +f9bd523df842e6b52de8880c366f7d15d6bab650 diff --git a/test/integration/stashPop/expected/repo/.git_keep/refs/stash b/test/integration/stashPop/expected/repo/.git_keep/refs/stash deleted file mode 100644 index 3a695ec9e..000000000 --- a/test/integration/stashPop/expected/repo/.git_keep/refs/stash +++ /dev/null @@ -1 +0,0 @@ -5e6c498354e93f4049e80254810f4577b180a8ab diff --git a/test/integration/stashPop/recording.json b/test/integration/stashPop/recording.json index 8629fa444..272f83875 100644 --- a/test/integration/stashPop/recording.json +++ b/test/integration/stashPop/recording.json @@ -1 +1 @@ -{"KeyEvents":[{"Timestamp":752,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1144,"Mod":0,"Key":256,"Ch":83},{"Timestamp":1424,"Mod":0,"Key":258,"Ch":0},{"Timestamp":1640,"Mod":0,"Key":13,"Ch":13},{"Timestamp":1742,"Mod":0,"Key":256,"Ch":97},{"Timestamp":1775,"Mod":0,"Key":256,"Ch":115},{"Timestamp":1832,"Mod":0,"Key":256,"Ch":100},{"Timestamp":2097,"Mod":0,"Key":13,"Ch":13},{"Timestamp":2552,"Mod":0,"Key":256,"Ch":32},{"Timestamp":3065,"Mod":0,"Key":256,"Ch":83},{"Timestamp":3425,"Mod":0,"Key":258,"Ch":0},{"Timestamp":3584,"Mod":0,"Key":13,"Ch":13},{"Timestamp":3840,"Mod":0,"Key":256,"Ch":97},{"Timestamp":3880,"Mod":0,"Key":256,"Ch":115},{"Timestamp":3967,"Mod":0,"Key":256,"Ch":100},{"Timestamp":4656,"Mod":0,"Key":13,"Ch":13},{"Timestamp":5121,"Mod":0,"Key":259,"Ch":0},{"Timestamp":5304,"Mod":0,"Key":259,"Ch":0},{"Timestamp":5608,"Mod":0,"Key":259,"Ch":0},{"Timestamp":6008,"Mod":0,"Key":258,"Ch":0},{"Timestamp":6921,"Mod":0,"Key":256,"Ch":103},{"Timestamp":7328,"Mod":0,"Key":13,"Ch":13},{"Timestamp":8304,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":272,"Height":74}]} \ No newline at end of file +{"KeyEvents":[{"Timestamp":658,"Mod":0,"Key":256,"Ch":53},{"Timestamp":1387,"Mod":0,"Key":256,"Ch":103},{"Timestamp":2364,"Mod":0,"Key":13,"Ch":13},{"Timestamp":3446,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":55}]} \ No newline at end of file diff --git a/test/integration/stashPop/setup.sh b/test/integration/stashPop/setup.sh index caff56b7d..2278d53d8 100644 --- a/test/integration/stashPop/setup.sh +++ b/test/integration/stashPop/setup.sh @@ -24,3 +24,5 @@ git commit -am file2 echo "hello there" > file1 echo "hello there" > file2 echo "hello there" > file3 + +git stash save "stash to drop" From 8b8a405b7c9765d8e679e1376539041eb6cc0957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Fri, 6 May 2022 12:03:18 +0200 Subject: [PATCH 6/6] Update stashing tests to apply instead of pop --- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../expected/repo/.git_keep/index | Bin 262 -> 262 bytes .../expected/repo/.git_keep/logs/HEAD | 12 ++++++------ .../repo/.git_keep/logs/refs/heads/master | 6 +++--- .../expected/repo/.git_keep/logs/refs/stash | 3 +++ .../28/3a00085a0d95e814920f9eae7009789cee0eab | 2 ++ .../29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 | 3 --- .../56/6ddc4a6a06724993b2a55fec3f696c47b9dcce | Bin 0 -> 162 bytes .../5a/70ee314842fb5f46b452d16bc4d95e7154d4b4 | Bin 0 -> 192 bytes .../62/4317ac2731648d4b0e30068dd35aca2a0b4791 | Bin 147 -> 0 bytes .../65/e3f346ea03c8c2b0f1b8f6691abaed651fb77d | 3 +++ .../6b/8c369acb1897a5787e72b4c15d597d346f2b6a | 2 ++ .../6c/09c8b498849a1679bcd05488661a2ce123b578 | 2 -- .../6e/fac41f92e54de5411b9195449dbef0960daaf4 | 3 --- .../7f/e42e1229b06d1307f6e7717c47f6bb4248fa2e | 1 - .../8f/a874178500f99d69f649ff9128f3d1b62369a0 | Bin 148 -> 0 bytes .../a5/2c63287cda99fcc917438c34ac8f9c67274d79 | Bin 0 -> 119 bytes .../b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 | Bin 162 -> 0 bytes .../cb/66567aecbd1ceb7caebf1c3a3d16db28f4a54c | Bin 0 -> 147 bytes .../d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd | 1 - .../df/9f3a300512205640e5ff10b624072a10afddde | 3 +++ .../e4/13783635b9870fae2e48d6e6dccbdce5ddb3ff | Bin 0 -> 161 bytes .../f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc | Bin 161 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 1 + test/integration/stashAllChanges/recording.json | 2 +- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../expected/repo/.git_keep/index | Bin 262 -> 262 bytes .../expected/repo/.git_keep/logs/HEAD | 8 ++++---- .../repo/.git_keep/logs/refs/heads/master | 6 +++--- .../expected/repo/.git_keep/logs/refs/stash | 1 + .../05/6328ba39d0418acd7270389b9d5f253b98aabf | 2 ++ .../24/35f1f9565ecb370eb550f591d55179f1e9a7de | Bin 161 -> 0 bytes .../5c/7a56ef74b1a692d67990b3f07a3af45a0e8f48 | Bin 0 -> 118 bytes .../78/3b58a50bb867917c6a8a78ff18cadb3fdc771e | Bin 119 -> 0 bytes .../81/f8f7653f26197f4f66641d6ab4ab99ac2a3391 | Bin 0 -> 147 bytes .../8f/bffdd316c764e171c3e421205327588077f49c | 1 - .../99/bcc624e9c596901f0dd572be23ba5df84ec0d5 | Bin 0 -> 160 bytes .../c8/7c87eb867338ed9956f6b28c8c3a83a1802c16 | 1 + .../e2/21db5981b482fb2110c8b283f48c08cd5f10c3 | Bin 148 -> 0 bytes .../e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 | Bin 147 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 1 + .../stashAllChangesKeepIndex/recording.json | 2 +- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../expected/repo/.git_keep/index | Bin 334 -> 334 bytes .../expected/repo/.git_keep/logs/HEAD | 10 +++++----- .../repo/.git_keep/logs/refs/heads/master | 6 +++--- .../expected/repo/.git_keep/logs/refs/stash | 1 + .../29/d32b3857eab1a570b9fc534dd90b9876c5cd1a | 3 +++ .../2b/515d20a02212d14a519d82917b791e01ebc659 | Bin 148 -> 0 bytes .../2b/d62bafdea9ceb4732326e82d4ce14196d7a032 | Bin 160 -> 0 bytes .../40/62b34fff18c4453edded2da4f0737176daaa4d | Bin 118 -> 0 bytes .../54/fbb8276359cb6f68faa9cb7dcf58f93c838035 | Bin 187 -> 0 bytes .../67/9786f833f91434f42757cc4b3bfb9ee1c573c5 | 2 ++ .../6c/d167c43cd50ae47f776f182ed6ff0b0a4471e3 | Bin 0 -> 119 bytes .../b1/60a56c2580f8cc1e5432f32212f83395459997 | Bin 147 -> 0 bytes .../b7/1c3131aa943097c697d5194d0f4de01f82b743 | Bin 0 -> 147 bytes .../cc/4c970471739bc691d2e94cdb419f6e7932f396 | Bin 0 -> 190 bytes .../fb/0410e49f4f878fc7a57497556a45c7d052a63e | 1 + .../fe/0b6136ae74e574b3349fabbf0b89053c6a201e | Bin 187 -> 0 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 1 + .../stashStagedChanges/recording.json | 2 +- .../expected/repo/.git_keep/ORIG_HEAD | 2 +- .../expected/repo/.git_keep/index | Bin 262 -> 262 bytes .../expected/repo/.git_keep/logs/HEAD | 12 ++++++------ .../repo/.git_keep/logs/refs/heads/master | 10 +++++----- .../expected/repo/.git_keep/logs/refs/stash | 1 + .../3a/8dac53bf53e3243a325a9e0b3ef523764ee74d | 2 -- .../70/dfa7fd25e9af49b7277738270a61d5dfbbac53 | 3 +++ .../74/244487ab29dc413ae1f98e4fa40256a0787212 | Bin 147 -> 0 bytes .../80/a20247e61d440004def8f284964334ee381d0a | Bin 0 -> 187 bytes .../84/988130b443577e2afc62d4103f92fcbed33add | Bin 118 -> 0 bytes .../b2/45d3aa308ffdfdd194a94ad84a678a8a7a028c | 3 +++ .../bc/4b1a5b9b60d70107fab9078137bad212e29567 | 1 + .../c2/71c5cc28c056383278c655b4e227fa69b06073 | Bin 185 -> 0 bytes .../c8/84f894908d3042f54995005b8e3445958b2fcc | Bin 148 -> 0 bytes .../e7/02e6113eff6883a33505e2b28cff2df3420fed | 3 +++ .../ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b | Bin 176 -> 0 bytes .../f8/e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 | Bin 0 -> 119 bytes .../expected/repo/.git_keep/refs/heads/master | 2 +- .../expected/repo/.git_keep/refs/stash | 1 + .../stashUnstagedChanges/recording.json | 2 +- 84 files changed, 86 insertions(+), 60 deletions(-) create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/stash create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/3a00085a0d95e814920f9eae7009789cee0eab delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/56/6ddc4a6a06724993b2a55fec3f696c47b9dcce create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/5a/70ee314842fb5f46b452d16bc4d95e7154d4b4 delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/65/e3f346ea03c8c2b0f1b8f6691abaed651fb77d create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/6b/8c369acb1897a5787e72b4c15d597d346f2b6a delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/7f/e42e1229b06d1307f6e7717c47f6bb4248fa2e delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/8f/a874178500f99d69f649ff9128f3d1b62369a0 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/a5/2c63287cda99fcc917438c34ac8f9c67274d79 delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/b1/dfa9f82f0821f9decd33c52c9bfe0f0ff86b41 create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/cb/66567aecbd1ceb7caebf1c3a3d16db28f4a54c delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/df/9f3a300512205640e5ff10b624072a10afddde create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/e4/13783635b9870fae2e48d6e6dccbdce5ddb3ff delete mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc create mode 100644 test/integration/stashAllChanges/expected/repo/.git_keep/refs/stash create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/stash create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/05/6328ba39d0418acd7270389b9d5f253b98aabf delete mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/5c/7a56ef74b1a692d67990b3f07a3af45a0e8f48 delete mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/81/f8f7653f26197f4f66641d6ab4ab99ac2a3391 delete mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/99/bcc624e9c596901f0dd572be23ba5df84ec0d5 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/c8/7c87eb867338ed9956f6b28c8c3a83a1802c16 delete mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 delete mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 create mode 100644 test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/stash create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/stash create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/29/d32b3857eab1a570b9fc534dd90b9876c5cd1a delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/54/fbb8276359cb6f68faa9cb7dcf58f93c838035 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/67/9786f833f91434f42757cc4b3bfb9ee1c573c5 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/6c/d167c43cd50ae47f776f182ed6ff0b0a4471e3 delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b7/1c3131aa943097c697d5194d0f4de01f82b743 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/cc/4c970471739bc691d2e94cdb419f6e7932f396 create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fb/0410e49f4f878fc7a57497556a45c7d052a63e delete mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e create mode 100644 test/integration/stashStagedChanges/expected/repo/.git_keep/refs/stash create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/stash delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/70/dfa7fd25e9af49b7277738270a61d5dfbbac53 delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/80/a20247e61d440004def8f284964334ee381d0a delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/84/988130b443577e2afc62d4103f92fcbed33add create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/b2/45d3aa308ffdfdd194a94ad84a678a8a7a028c create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/bc/4b1a5b9b60d70107fab9078137bad212e29567 delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/e7/02e6113eff6883a33505e2b28cff2df3420fed delete mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/f8/e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 create mode 100644 test/integration/stashUnstagedChanges/expected/repo/.git_keep/refs/stash diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD index edd32295e..b6b4a34f7 100644 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -8fa874178500f99d69f649ff9128f3d1b62369a0 +cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/index b/test/integration/stashAllChanges/expected/repo/.git_keep/index index afb46a953eb37c576b041edeb4b4040a888bbc26..1d75c1b325c4f74d5a89e0c0a0cbdd2006c2ab5c 100644 GIT binary patch delta 65 zcmZo;YGYDy@eFciU|?VZV& 1650002283 +0200 commit (initial): file0 -29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 624317ac2731648d4b0e30068dd35aca2a0b4791 CI 1650002283 +0200 commit: file1 -624317ac2731648d4b0e30068dd35aca2a0b4791 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002283 +0200 commit: file2 -8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002287 +0200 reset: moving to HEAD -8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002295 +0200 reset: moving to HEAD -8fa874178500f99d69f649ff9128f3d1b62369a0 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002303 +0200 reset: moving to HEAD +0000000000000000000000000000000000000000 a52c63287cda99fcc917438c34ac8f9c67274d79 CI 1651830755 +0200 commit (initial): file0 +a52c63287cda99fcc917438c34ac8f9c67274d79 283a00085a0d95e814920f9eae7009789cee0eab CI 1651830755 +0200 commit: file1 +283a00085a0d95e814920f9eae7009789cee0eab cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c CI 1651830755 +0200 commit: file2 +cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c CI 1651830760 +0200 reset: moving to HEAD +cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c CI 1651830769 +0200 reset: moving to HEAD +cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c CI 1651830778 +0200 reset: moving to HEAD diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master index 89fb0a652..3b9c06579 100644 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 CI 1650002283 +0200 commit (initial): file0 -29e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 624317ac2731648d4b0e30068dd35aca2a0b4791 CI 1650002283 +0200 commit: file1 -624317ac2731648d4b0e30068dd35aca2a0b4791 8fa874178500f99d69f649ff9128f3d1b62369a0 CI 1650002283 +0200 commit: file2 +0000000000000000000000000000000000000000 a52c63287cda99fcc917438c34ac8f9c67274d79 CI 1651830755 +0200 commit (initial): file0 +a52c63287cda99fcc917438c34ac8f9c67274d79 283a00085a0d95e814920f9eae7009789cee0eab CI 1651830755 +0200 commit: file1 +283a00085a0d95e814920f9eae7009789cee0eab cb66567aecbd1ceb7caebf1c3a3d16db28f4a54c CI 1651830755 +0200 commit: file2 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/stash new file mode 100644 index 000000000..a3a868578 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/logs/refs/stash @@ -0,0 +1,3 @@ +0000000000000000000000000000000000000000 df9f3a300512205640e5ff10b624072a10afddde CI 1651830760 +0200 On master: stash all +df9f3a300512205640e5ff10b624072a10afddde 6b8c369acb1897a5787e72b4c15d597d346f2b6a CI 1651830769 +0200 On master: stash newly tracked +6b8c369acb1897a5787e72b4c15d597d346f2b6a 5a70ee314842fb5f46b452d16bc4d95e7154d4b4 CI 1651830778 +0200 On master: stash with staged diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/3a00085a0d95e814920f9eae7009789cee0eab b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/3a00085a0d95e814920f9eae7009789cee0eab new file mode 100644 index 000000000..45c762814 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/28/3a00085a0d95e814920f9eae7009789cee0eab @@ -0,0 +1,2 @@ +xK +0@]$ɀU1N&X0=x pOcWj1%f_CnAjPlstf]8yDHP$DH2zg<|/Y \N)zkA-/u9 \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 deleted file mode 100644 index efe9bb1f3..000000000 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/29/e5ddcfe80c21ef3d9df877d1173d8d1f56dce7 +++ /dev/null @@ -1,3 +0,0 @@ -xA -0FsdR -_;?BtN;K2 literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/5a/70ee314842fb5f46b452d16bc4d95e7154d4b4 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/5a/70ee314842fb5f46b452d16bc4d95e7154d4b4 new file mode 100644 index 0000000000000000000000000000000000000000..62afd0629c353a778f4d6d4b313e7af62c83f0cb GIT binary patch literal 192 zcmV;x06+hD0gca1Y6CG01>mmd6xtVxf8}uqrI1xtJ%cRCoj{xkGcN7%<1D)GPQ3T= zK)kkg>EO`4^i35aYt2-ZkbIIk*X*LYprs~DqFm66ttL%(+Vs|81Q;>VXvDIX#5AmB zPs5=UH`hQh@Sl%}A{@rN!Q?{DzBr1pD*K8VIi!+>Stt7L%euko49C;?Lw~8=ulmMo udk2fr&fcUn!>e(|Od}mnbp0ovK5x)yAN~M)r+tB+OJAPnm&yZk%TkqRq-8z; literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/62/4317ac2731648d4b0e30068dd35aca2a0b4791 deleted file mode 100644 index 0a30073de843cf0a495948d842f1c666218099cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gcX03c@fDKw;N8MfQTsOqxF^B6QVb#F+^e8e2*Pk8h9Q_VFzqZ>=re zVx~(!RINY^%$XT-;ZjIks85b1`zlV!K^XE71~hv)^xZ9G^&(s~0TXIT+i{v7`Yml=^~PJfTMQlmh?28cAOLgLbE@l~+|*@NG(QW^I&mx| BKpFr5 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/65/e3f346ea03c8c2b0f1b8f6691abaed651fb77d b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/65/e3f346ea03c8c2b0f1b8f6691abaed651fb77d new file mode 100644 index 000000000..2d46f6c29 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/65/e3f346ea03c8c2b0f1b8f6691abaed651fb77d @@ -0,0 +1,3 @@ +x +0E]+f/H("BWI2BӔo6TKhOmgNk#S$̈6Ā6OF; RDtS*q8N*2Ya:LM>UwF*—T +FzYj)E=s1+zwi^X/-6Av \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6b/8c369acb1897a5787e72b4c15d597d346f2b6a b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6b/8c369acb1897a5787e72b4c15d597d346f2b6a new file mode 100644 index 000000000..e0f637f62 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6b/8c369acb1897a5787e72b4c15d597d346f2b6a @@ -0,0 +1,2 @@ +xJ1a$Jjf5+R0{莨oo6>~8>ax*IcK6(PQUH*/wu 1bbRhIZϾZ86*WL%7D\X+FJJuqv8_|yo>_NIHh1\牡 +Op >z1Q \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 deleted file mode 100644 index 9727c4ec6..000000000 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6c/09c8b498849a1679bcd05488661a2ce123b578 +++ /dev/null @@ -1,2 +0,0 @@ -xA - E/qQK)r b nXK +lȬXAim3;-- \jiAGKrYE90)Exgݠ2r "7pFB=Zs.%%<͉?J \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 deleted file mode 100644 index 1a811f4f1..000000000 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/6e/fac41f92e54de5411b9195449dbef0960daaf4 +++ /dev/null @@ -1,3 +0,0 @@ -xϻJAay{F>CMw+L,3-vbnz׽.qBj,VEuAW$M|#ü[R.(CUa)j,ǚؘYE'UK:8e[dbZ0;J6h ["DxTVB)g7g_Ngx9[OekC qx?~&pt9V4hP \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/8f/a874178500f99d69f649ff9128f3d1b62369a0 b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/8f/a874178500f99d69f649ff9128f3d1b62369a0 deleted file mode 100644 index 4dea954a6a34dd4a4806c7e6e57317139b25eabb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmV;F0Biqv0gcW<3d0}}K+&!}h5JGoN23!crI1yQF*+j+#3lp_J$`e9Za;7F%huY` ztsC*u4^=xV5hsvBLMVbX+NT>aA?;VO<;m0Fk`C0s@$`o>N`_3=l z183u|Z6c6lM5T#*5q5~4DS6=#G>4SOXh$DPBqsCZO_l~pIYn<{3W%C>p{(SyYPK%v zQ0z!OIxi= zvo7+b9e|Ax(Lgy#7S5Tq%q4qrp+^Y(>q9+^snA`rzO zF#!afjego|JM1{wVVs`$YTZ}d(pDeV_1;NG!FzipCNgI|ryBm`rYtMi`~ao9Im@d` BMq~g0 literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd deleted file mode 100644 index 4379cd5d8..000000000 --- a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/d7/cc3e41ea34ee3f9441b3a1493405d34f15c1cd +++ /dev/null @@ -1 +0,0 @@ -xϻJAay鮮ZD6o=̴o$榇^{LcPf,NQp%-aVLY3e4,ѹZXc`59;͒HEH)I18dnpZo)<gQ#<:tn:#bmnOۯԯG-=N^ \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/df/9f3a300512205640e5ff10b624072a10afddde b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/df/9f3a300512205640e5ff10b624072a10afddde new file mode 100644 index 000000000..ffb320769 --- /dev/null +++ b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/df/9f3a300512205640e5ff10b624072a10afddde @@ -0,0 +1,3 @@ +xϽJA`}ߞY.gNع=vGܴ꣠xk@iYm%SBEjk6+Dao,:>`lij4HӡP-QN5XjĘZ3Ҡ +* + ,ҢBp?c5]pn<1|CsW87m$O \ No newline at end of file diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/e4/13783635b9870fae2e48d6e6dccbdce5ddb3ff b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/e4/13783635b9870fae2e48d6e6dccbdce5ddb3ff new file mode 100644 index 0000000000000000000000000000000000000000..cd8006b21157e06aea4127a11442538a0ecc634f GIT binary patch literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlw{0+hi3Hp{G7$v%A4U)0P^c&$k!vUWXYNUP>7& zco$D~Q-!M{QnbP-=tVr`l%=yS2F(%GA^IkP}^y^ukMdfD4_&#>QabY`wMSpvP3zKXo(CqB|@z6nY=k P?RN!voYb2yy5vJ|m8VRS literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc b/test/integration/stashAllChanges/expected/repo/.git_keep/objects/f9/0ee43c5ddc18a1341e5d77f2319e4e00e5effc deleted file mode 100644 index 9a5aa9571a31ac952308b2c56a2ab9ec1c6995f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmV;S0ABxi0gaA93c@fD06pgwdlzK0ZIg|N2tD-~X|jt2)0P^c&$k!vUWXZ&w3ISc zAnQ+c6M-Pi(PK`WnR2G6qvj5+ccPxfGE*}qN@k6l%oSK8`__8y5H*DCg1R=S21~3> zwxgrQg@`78>T}tkAK=yx57}c`Uvf!Hxr22_j703=jD% 1650002378 +0200 commit (initial): file0 -783b58a50bb867917c6a8a78ff18cadb3fdc771e e221db5981b482fb2110c8b283f48c08cd5f10c3 CI 1650002378 +0200 commit: file1 -e221db5981b482fb2110c8b283f48c08cd5f10c3 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002378 +0200 commit: file2 -e55d4f76f2b99c3b6b0c960725099ae54e34af70 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002384 +0200 reset: moving to HEAD +0000000000000000000000000000000000000000 5c7a56ef74b1a692d67990b3f07a3af45a0e8f48 CI 1651830909 +0200 commit (initial): file0 +5c7a56ef74b1a692d67990b3f07a3af45a0e8f48 81f8f7653f26197f4f66641d6ab4ab99ac2a3391 CI 1651830909 +0200 commit: file1 +81f8f7653f26197f4f66641d6ab4ab99ac2a3391 056328ba39d0418acd7270389b9d5f253b98aabf CI 1651830909 +0200 commit: file2 +056328ba39d0418acd7270389b9d5f253b98aabf 056328ba39d0418acd7270389b9d5f253b98aabf CI 1651830915 +0200 reset: moving to HEAD diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master index 3032aa450..24c7e3201 100644 --- a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 783b58a50bb867917c6a8a78ff18cadb3fdc771e CI 1650002378 +0200 commit (initial): file0 -783b58a50bb867917c6a8a78ff18cadb3fdc771e e221db5981b482fb2110c8b283f48c08cd5f10c3 CI 1650002378 +0200 commit: file1 -e221db5981b482fb2110c8b283f48c08cd5f10c3 e55d4f76f2b99c3b6b0c960725099ae54e34af70 CI 1650002378 +0200 commit: file2 +0000000000000000000000000000000000000000 5c7a56ef74b1a692d67990b3f07a3af45a0e8f48 CI 1651830909 +0200 commit (initial): file0 +5c7a56ef74b1a692d67990b3f07a3af45a0e8f48 81f8f7653f26197f4f66641d6ab4ab99ac2a3391 CI 1651830909 +0200 commit: file1 +81f8f7653f26197f4f66641d6ab4ab99ac2a3391 056328ba39d0418acd7270389b9d5f253b98aabf CI 1651830909 +0200 commit: file2 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/stash new file mode 100644 index 000000000..a7bbabb68 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/logs/refs/stash @@ -0,0 +1 @@ +0000000000000000000000000000000000000000 c87c87eb867338ed9956f6b28c8c3a83a1802c16 CI 1651830915 +0200 On master: keep index diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/05/6328ba39d0418acd7270389b9d5f253b98aabf b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/05/6328ba39d0418acd7270389b9d5f253b98aabf new file mode 100644 index 000000000..31a2717bd --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/05/6328ba39d0418acd7270389b9d5f253b98aabf @@ -0,0 +1,2 @@ +xA + @Ѯ=BqDG(U1 & =~sn?o-$C&!jJX+fD# wJ9%.'0l/}[BK.٫CYϩ.r*h~9 \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/24/35f1f9565ecb370eb550f591d55179f1e9a7de deleted file mode 100644 index 63c3eaa1198f3cb074564e50b11a007b48ce9393..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmV;S0ABxi0gaB!3c@fD06pg`_Abaa?}&)dQ$Hh{Y_MROQX};9?Zvy-VFo6(TIUXO zaHqa8gSAA-V@Nrc?5#^BD2Y_aX|IWVi9UF(y;$SMO9wV4>*8#Y6hcyD2~)7>q`?p( z8_i0`;!wm-f3^+A32x)`;62v$#h29T9R_O4`!qlCjrG0Zw(Rvm5_%as YHa5DlXLe^jCk=mcSJn;ee%sJ1@Ldc$9RL6T literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/78/3b58a50bb867917c6a8a78ff18cadb3fdc771e deleted file mode 100644 index 620eb2ec8aa70787cf382552416af5d741428b91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmV--0Eqv10gcT;3c@fDMq$@E#q0%{NvBBzB0^U^M$-JjLPMlP@c8x!ZXX}Kwbih+aEo@URHb8@_HSyD5?Vx#~`@B5yjrG0bwzm2paU(O^ Z!B2E$%WTeiPCEYNrffUd`~cWoE8LbTIoSXJ diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/81/f8f7653f26197f4f66641d6ab4ab99ac2a3391 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/81/f8f7653f26197f4f66641d6ab4ab99ac2a3391 new file mode 100644 index 0000000000000000000000000000000000000000..a3abc271dc37e64d41973c399ddf698f5f743d5e GIT binary patch literal 147 zcmV;E0Brww0gaAJ3c@fDKwak)*$XoHO*$YVbk$=_Clf3*wv-4S-yXs3dvEb%Yi;S) zk-zjq)fUJoLLxvc%)SJyvt*`JOHdyGBSnnP?0o3E+jP2wT63HoBl&`v2ISImP6* BMNt3% literal 0 HcmV?d00001 diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c deleted file mode 100644 index f22bfcca1..000000000 --- a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/8f/bffdd316c764e171c3e421205327588077f49c +++ /dev/null @@ -1 +0,0 @@ -xϻj1atB0rgIgIZ?~Iqo<߆ Oc7AOb!Zjip`JPEZRL%0(8!&B>M8q 2싘hg|\zC/mߝLD!{@41O>},n_M \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/99/bcc624e9c596901f0dd572be23ba5df84ec0d5 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/99/bcc624e9c596901f0dd572be23ba5df84ec0d5 new file mode 100644 index 0000000000000000000000000000000000000000..7e40c36bb367a998729924be470de6046f7a4d9b GIT binary patch literal 160 zcmV;R0AK%j0gaBk3IZ_@0Il;C+Y7RJZ$w0}@-uexzyot9X9PdrYwT@@8JN8EJ`FHB z?#5axgdma$Q!d;Jg_v8i2Bk@K!myJ^.7K?\$#xDuOo{g4;ඩRN+ \ No newline at end of file diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e2/21db5981b482fb2110c8b283f48c08cd5f10c3 deleted file mode 100644 index 346dbdc7d917693747ad382ef628e7149cb667b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmV;F0Biqv0gcW<3d0}}K+&!}h5JGoH988V6tc=O#&M*9*aWfA<2Og>_VX5>_tw^- zO|qBKMRWlS%!wHiF_A4U)XYf9*W$!F2veHEWYj@j-a}(_*+=q_a}1aaa-c{UYc-Ln zWLFC#8d3Bauf6Me(f4_I%9q-)$&L5+&?a~QunwcXf(1}#J*S5J$yHr9G3p1=O*$CJ C7f1vE diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/objects/e5/5d4f76f2b99c3b6b0c960725099ae54e34af70 deleted file mode 100644 index 5db9016237d1f9d0490bdb311233ef3d6be1f7f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gcW<3d0}}K+&!}h5JI88DpG4DTS`-rh&2QYJ$`e9ZXbW~rPaE2 zixXY?p=u{(jsdc8X3CjjNhN#0Flq^`$V@H?iP__!?{1X{bMg~o8kkBVL=aBIt_&=| zl6^VFnfU3icG!8b_j!5hH`aaAo3#3{IC=me7ua5b0L-c9RM$UqQ`Sw%`~avSIjWNc BL}UN} diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master index 98460a0ae..5f3d4ba83 100644 --- a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/heads/master @@ -1 +1 @@ -e55d4f76f2b99c3b6b0c960725099ae54e34af70 +056328ba39d0418acd7270389b9d5f253b98aabf diff --git a/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/stash b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/stash new file mode 100644 index 000000000..4a3424d55 --- /dev/null +++ b/test/integration/stashAllChangesKeepIndex/expected/repo/.git_keep/refs/stash @@ -0,0 +1 @@ +c87c87eb867338ed9956f6b28c8c3a83a1802c16 diff --git a/test/integration/stashAllChangesKeepIndex/recording.json b/test/integration/stashAllChangesKeepIndex/recording.json index 353ca2ae6..f9ae3f103 100644 --- a/test/integration/stashAllChangesKeepIndex/recording.json +++ b/test/integration/stashAllChangesKeepIndex/recording.json @@ -1 +1 @@ -{"KeyEvents":[{"Timestamp":1343,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1895,"Mod":0,"Key":256,"Ch":83},{"Timestamp":3116,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4389,"Mod":0,"Key":256,"Ch":107},{"Timestamp":4458,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4571,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4656,"Mod":0,"Key":256,"Ch":112},{"Timestamp":4742,"Mod":0,"Key":256,"Ch":32},{"Timestamp":4834,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4908,"Mod":0,"Key":256,"Ch":110},{"Timestamp":4965,"Mod":0,"Key":256,"Ch":100},{"Timestamp":5013,"Mod":0,"Key":256,"Ch":101},{"Timestamp":5162,"Mod":0,"Key":256,"Ch":120},{"Timestamp":5500,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6822,"Mod":0,"Key":256,"Ch":53},{"Timestamp":8093,"Mod":0,"Key":256,"Ch":103},{"Timestamp":8985,"Mod":0,"Key":13,"Ch":13},{"Timestamp":9950,"Mod":0,"Key":256,"Ch":49},{"Timestamp":10588,"Mod":0,"Key":256,"Ch":106},{"Timestamp":11171,"Mod":0,"Key":256,"Ch":50},{"Timestamp":11581,"Mod":0,"Key":256,"Ch":32},{"Timestamp":12392,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":56}]} \ No newline at end of file +{"KeyEvents":[{"Timestamp":1343,"Mod":0,"Key":256,"Ch":32},{"Timestamp":1895,"Mod":0,"Key":256,"Ch":83},{"Timestamp":3116,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4389,"Mod":0,"Key":256,"Ch":107},{"Timestamp":4458,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4571,"Mod":0,"Key":256,"Ch":101},{"Timestamp":4656,"Mod":0,"Key":256,"Ch":112},{"Timestamp":4742,"Mod":0,"Key":256,"Ch":32},{"Timestamp":4834,"Mod":0,"Key":256,"Ch":105},{"Timestamp":4908,"Mod":0,"Key":256,"Ch":110},{"Timestamp":4965,"Mod":0,"Key":256,"Ch":100},{"Timestamp":5013,"Mod":0,"Key":256,"Ch":101},{"Timestamp":5162,"Mod":0,"Key":256,"Ch":120},{"Timestamp":5500,"Mod":0,"Key":13,"Ch":13},{"Timestamp":6822,"Mod":0,"Key":256,"Ch":53},{"Timestamp":8093,"Mod":0,"Key":256,"Ch":32},{"Timestamp":8985,"Mod":0,"Key":13,"Ch":13},{"Timestamp":9950,"Mod":0,"Key":256,"Ch":49},{"Timestamp":10588,"Mod":0,"Key":256,"Ch":106},{"Timestamp":11171,"Mod":0,"Key":256,"Ch":50},{"Timestamp":11581,"Mod":0,"Key":256,"Ch":32},{"Timestamp":12392,"Mod":0,"Key":256,"Ch":113}],"ResizeEvents":[{"Timestamp":0,"Width":239,"Height":56}]} diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/ORIG_HEAD b/test/integration/stashStagedChanges/expected/repo/.git_keep/ORIG_HEAD index a47ee9407..218f6a270 100644 --- a/test/integration/stashStagedChanges/expected/repo/.git_keep/ORIG_HEAD +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/ORIG_HEAD @@ -1 +1 @@ -2b515d20a02212d14a519d82917b791e01ebc659 +b71c3131aa943097c697d5194d0f4de01f82b743 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/index b/test/integration/stashStagedChanges/expected/repo/.git_keep/index index b5bae0d08c39b600fdd868e3dfa6c8313b042ee4..09e14a6d2f319b0cd777d35d9660a8cd8e08981a 100644 GIT binary patch delta 92 zcmX@dbdE{I#WTp6fq{Vuh*^?KKDmnJJY5B&fnrjOf?RthsvHzA`Q$Hn%d`S01*RcV g+!_=A*okD_+qUcE$3^d-R76Z_Y`5R=VzbG70Ec)ZkN^Mx delta 92 zcmX@dbdE{I#WTp6fq{Vuh*^>%Ie&2MKVJc(fnrh&A5Mf$R5>Uf$;BuvyvaEUN<*bS ePyAyiQt~t0;rs-T)vJVEG~V)u9Aw=(r4Rredmo4Z diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD index a5965cba2..4df45bbb4 100644 --- a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/HEAD @@ -1,5 +1,5 @@ -0000000000000000000000000000000000000000 4062b34fff18c4453edded2da4f0737176daaa4d CI 1650002424 +0200 commit (initial): file0 -4062b34fff18c4453edded2da4f0737176daaa4d b160a56c2580f8cc1e5432f32212f83395459997 CI 1650002424 +0200 commit: file1 -b160a56c2580f8cc1e5432f32212f83395459997 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002424 +0200 commit: file2 -2b515d20a02212d14a519d82917b791e01ebc659 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002430 +0200 reset: moving to HEAD -2b515d20a02212d14a519d82917b791e01ebc659 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002430 +0200 reset: moving to HEAD +0000000000000000000000000000000000000000 6cd167c43cd50ae47f776f182ed6ff0b0a4471e3 CI 1651831365 +0200 commit (initial): file0 +6cd167c43cd50ae47f776f182ed6ff0b0a4471e3 29d32b3857eab1a570b9fc534dd90b9876c5cd1a CI 1651831365 +0200 commit: file1 +29d32b3857eab1a570b9fc534dd90b9876c5cd1a b71c3131aa943097c697d5194d0f4de01f82b743 CI 1651831365 +0200 commit: file2 +b71c3131aa943097c697d5194d0f4de01f82b743 b71c3131aa943097c697d5194d0f4de01f82b743 CI 1651831372 +0200 reset: moving to HEAD +b71c3131aa943097c697d5194d0f4de01f82b743 b71c3131aa943097c697d5194d0f4de01f82b743 CI 1651831372 +0200 reset: moving to HEAD diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master index 8e5dd5d7f..106c3646d 100644 --- a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -1,3 +1,3 @@ -0000000000000000000000000000000000000000 4062b34fff18c4453edded2da4f0737176daaa4d CI 1650002424 +0200 commit (initial): file0 -4062b34fff18c4453edded2da4f0737176daaa4d b160a56c2580f8cc1e5432f32212f83395459997 CI 1650002424 +0200 commit: file1 -b160a56c2580f8cc1e5432f32212f83395459997 2b515d20a02212d14a519d82917b791e01ebc659 CI 1650002424 +0200 commit: file2 +0000000000000000000000000000000000000000 6cd167c43cd50ae47f776f182ed6ff0b0a4471e3 CI 1651831365 +0200 commit (initial): file0 +6cd167c43cd50ae47f776f182ed6ff0b0a4471e3 29d32b3857eab1a570b9fc534dd90b9876c5cd1a CI 1651831365 +0200 commit: file1 +29d32b3857eab1a570b9fc534dd90b9876c5cd1a b71c3131aa943097c697d5194d0f4de01f82b743 CI 1651831365 +0200 commit: file2 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/stash new file mode 100644 index 000000000..e5d15aef0 --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/logs/refs/stash @@ -0,0 +1 @@ +0000000000000000000000000000000000000000 cc4c970471739bc691d2e94cdb419f6e7932f396 CI 1651831372 +0200 On master: stash staged diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/29/d32b3857eab1a570b9fc534dd90b9876c5cd1a b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/29/d32b3857eab1a570b9fc534dd90b9876c5cd1a new file mode 100644 index 000000000..7363877b2 --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/29/d32b3857eab1a570b9fc534dd90b9876c5cd1a @@ -0,0 +1,3 @@ +xM +0@a9EgҀU1LR"x|{odkmCH$E 0Β8Z:rfCݒ$KRM*N +3p vqqz۾MH0g=M]VE9 \ No newline at end of file diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/515d20a02212d14a519d82917b791e01ebc659 deleted file mode 100644 index 0f1ad7e2f6b933bb926fc3f8af2f726d07238323..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmV;F0Biqv0gcX03c@fDKw;N8MfQSBCVvwU5xVLz(#Zr1jV&R9$G1mt`}h`*_tw^- zO~T9QB033Cj!>8iVJVpFQi}%@gVac3h|n&Ktd88}J@jG%WFHtkK_zA*-dU^`(O@NO zlXpI)6jlC=*WUFs>-#i6<(u2F$&L5+&?a~QK!;9W0Rhxm9Qa#hz&Q2hW)yEwy| CdPSB1 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/2b/d62bafdea9ceb4732326e82d4ce14196d7a032 deleted file mode 100644 index 1b07a5cbc28f199fff1ccc844654d961d5b1ef01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmV;R0AK%j0gaA93c@fD06pgwdlzJPleCS92tD-~+hl_U)0SGH&o>wEUWXZ&xRf&O zz|@}hO%+_WNExlPIYciuhE9Yjq=cC|Ct0J->^if`rgIHPPd+gUG7~3q;;Y(s7)>Smgg9E4M4WNyG$nl diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/40/62b34fff18c4453edded2da4f0737176daaa4d deleted file mode 100644 index 2fe4f5acdc5783bf6b3760d173ab1c8c009e0c81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3c@fDMq$@E#q0%{8K|012+}V+tYUB*W-q7JzT5SYb`MXn+MXb@9_*ZKr9b`!qlCjrG0Zvb6dj@dGof YsnMC0*&X$mbo|L(SvRoz0oCp+%zP_4y8r+H diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/54/fbb8276359cb6f68faa9cb7dcf58f93c838035 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/54/fbb8276359cb6f68faa9cb7dcf58f93c838035 deleted file mode 100644 index 77c7961f7d0703649d5ac3c4b5a917c8c48588c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmV;s07U diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/67/9786f833f91434f42757cc4b3bfb9ee1c573c5 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/67/9786f833f91434f42757cc4b3bfb9ee1c573c5 new file mode 100644 index 000000000..add1a9479 --- /dev/null +++ b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/67/9786f833f91434f42757cc4b3bfb9ee1c573c5 @@ -0,0 +1,2 @@ +xA +0E]$IDDzi2iK㛍{/ SEfҘ5!vL1xf!%[)ƻ,&9X>aI˛YRua0>ಽr;M ZEUWu /1 XKA \ No newline at end of file diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/6c/d167c43cd50ae47f776f182ed6ff0b0a4471e3 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/6c/d167c43cd50ae47f776f182ed6ff0b0a4471e3 new file mode 100644 index 0000000000000000000000000000000000000000..1cf887e68d687e8d0750887170fac83f971bf067 GIT binary patch literal 119 zcmV--0Eqv10gcT;3c@fDMq$@E#q0%{NhWCnB0^U^M$-JjLPMoQ@c8x!ZXX}KWp8cm zB&wHw03>h-Lyj?)EPe>72*6{mTG{4OZG=WuYtpB`_JgLG?$i9lH?{YM+p@O@N$@f{ ZalzA-Ewef6IqCS5o4Rgb^8?!BE9$5~J7xd? literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b1/60a56c2580f8cc1e5432f32212f83395459997 deleted file mode 100644 index 333da1d7e89c078282ccfa1e553f903344f3f220..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gcW<3c@fDKvCB@MfQSBCey@#h|pD!F`b!U!PrtFczk;Vx1YE8vbMH# z9}1rOZsrwo5-B23SeQ{`siE;2>+Z+N-^S@-UvAsWF0!_}4`~1ZBqV#fU0q%l+z;EDIvQSg BM?e4o diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b7/1c3131aa943097c697d5194d0f4de01f82b743 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/b7/1c3131aa943097c697d5194d0f4de01f82b743 new file mode 100644 index 0000000000000000000000000000000000000000..a0d6edf738b338342776bc714cdbac035660a951 GIT binary patch literal 147 zcmV;E0Brww0gaA93c@fD06pgwxeJorm}CPYLQj3hCcD9cv86=t`SuCkhG7m<*WQ<5 zA>(Q6sx~VTCnuGJPz1S^Cc#09+7c-cp)VDy*?8CYu$aYT@f4DB0S?KP+-mSwk$fPf zSVI+H!=Le7cRS7YHq8(Ha^GHhscXMmhylohkHMZDI%f`hObz`rH*I+-njhSWIx2Of BL-_yz literal 0 HcmV?d00001 diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/cc/4c970471739bc691d2e94cdb419f6e7932f396 b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/cc/4c970471739bc691d2e94cdb419f6e7932f396 new file mode 100644 index 0000000000000000000000000000000000000000..8bc1b9af9a25706e16e3c35c6d75d0b5bcc85360 GIT binary patch literal 190 zcmV;v073tF0gcbWN(33Fw;sHE$>HbY z|A}tBe-0NSKaAbXQ9}>Sqj1X_1vMv;0J&D*AdxgvY=P2pm)&l|6$V8>5Xpo-v#yzI zgiO;@wb_+IVZuMZa^|$QgxE3=Qlr3;RjFWUC7XdpMvaSnjmx&X)7ib8&TsZD{eHD4 s-TJG8HA0%B9NeQ1-Y+wqPYnAfU*2!7%Q5}4JBA#W-}_c6e:H4w39J 5{D-IC(n*ŀ!š[ BwjCP'Ωg.:GVW1 5.g~m;o6\H1C=x1~F>>G뗫4LR \ No newline at end of file diff --git a/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e b/test/integration/stashStagedChanges/expected/repo/.git_keep/objects/fe/0b6136ae74e574b3349fabbf0b89053c6a201e deleted file mode 100644 index 6524d6dfdd5728432601ba48d1de6655068bd7c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 187 zcmV;s07Uf2)J^UXIN=halrDKI|cIikt?@prWn2{ zrmnqz4?{k_j7`ApkacAkzQ< delta 92 zcmZo;YGYDy@eFciU|?VZV&`5;pFUzDu&`fDJd(dVvrPwhDxoS dnA0X=sp7|Q``&7OliQYAuP2yZ|9YKC5dZ>L8zcY# diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD index c1a19352a..bf3da7509 100644 --- a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/HEAD @@ -1,6 +1,6 @@ -0000000000000000000000000000000000000000 84988130b443577e2afc62d4103f92fcbed33add CI 1650002439 +0200 commit (initial): file0 -84988130b443577e2afc62d4103f92fcbed33add c884f894908d3042f54995005b8e3445958b2fcc CI 1650002439 +0200 commit: file1 -c884f894908d3042f54995005b8e3445958b2fcc 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002439 +0200 commit: file2 -74244487ab29dc413ae1f98e4fa40256a0787212 ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 commit: [lazygit] stashing unstaged changes -ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 reset: moving to HEAD -ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002447 +0200 reset: moving to HEAD^ +0000000000000000000000000000000000000000 f8e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 CI 1651831332 +0200 commit (initial): file0 +f8e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 e702e6113eff6883a33505e2b28cff2df3420fed CI 1651831332 +0200 commit: file1 +e702e6113eff6883a33505e2b28cff2df3420fed b245d3aa308ffdfdd194a94ad84a678a8a7a028c CI 1651831332 +0200 commit: file2 +b245d3aa308ffdfdd194a94ad84a678a8a7a028c 70dfa7fd25e9af49b7277738270a61d5dfbbac53 CI 1651831340 +0200 commit: [lazygit] stashing unstaged changes +70dfa7fd25e9af49b7277738270a61d5dfbbac53 70dfa7fd25e9af49b7277738270a61d5dfbbac53 CI 1651831340 +0200 reset: moving to HEAD +70dfa7fd25e9af49b7277738270a61d5dfbbac53 b245d3aa308ffdfdd194a94ad84a678a8a7a028c CI 1651831340 +0200 reset: moving to HEAD^ diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master index 02ecdf692..e46c60988 100644 --- a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/heads/master @@ -1,5 +1,5 @@ -0000000000000000000000000000000000000000 84988130b443577e2afc62d4103f92fcbed33add CI 1650002439 +0200 commit (initial): file0 -84988130b443577e2afc62d4103f92fcbed33add c884f894908d3042f54995005b8e3445958b2fcc CI 1650002439 +0200 commit: file1 -c884f894908d3042f54995005b8e3445958b2fcc 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002439 +0200 commit: file2 -74244487ab29dc413ae1f98e4fa40256a0787212 ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b CI 1650002447 +0200 commit: [lazygit] stashing unstaged changes -ed408704bb5eb653ceacee9ce485ef1bb0ea7a0b 74244487ab29dc413ae1f98e4fa40256a0787212 CI 1650002447 +0200 reset: moving to HEAD^ +0000000000000000000000000000000000000000 f8e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 CI 1651831332 +0200 commit (initial): file0 +f8e5bdb9f59bd7ae0c72bb4aa0bb9d6af96ec689 e702e6113eff6883a33505e2b28cff2df3420fed CI 1651831332 +0200 commit: file1 +e702e6113eff6883a33505e2b28cff2df3420fed b245d3aa308ffdfdd194a94ad84a678a8a7a028c CI 1651831332 +0200 commit: file2 +b245d3aa308ffdfdd194a94ad84a678a8a7a028c 70dfa7fd25e9af49b7277738270a61d5dfbbac53 CI 1651831340 +0200 commit: [lazygit] stashing unstaged changes +70dfa7fd25e9af49b7277738270a61d5dfbbac53 b245d3aa308ffdfdd194a94ad84a678a8a7a028c CI 1651831340 +0200 reset: moving to HEAD^ diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/stash b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/stash new file mode 100644 index 000000000..869d2d514 --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/logs/refs/stash @@ -0,0 +1 @@ +0000000000000000000000000000000000000000 80a20247e61d440004def8f284964334ee381d0a CI 1651831340 +0200 On master: unstaged diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d deleted file mode 100644 index 205ac4dc4..000000000 --- a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/3a/8dac53bf53e3243a325a9e0b3ef523764ee74d +++ /dev/null @@ -1,2 +0,0 @@ -xj0DsW=P6ZK) ]ie"9 -${nxayБU 9Eo]HñCIȓOO͍W-4zmUl AuJtAe(uZV8tU?’`{DC4mRU\>`)ykϗ\ [me#N \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/70/dfa7fd25e9af49b7277738270a61d5dfbbac53 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/70/dfa7fd25e9af49b7277738270a61d5dfbbac53 new file mode 100644 index 000000000..9ba23ed1e --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/70/dfa7fd25e9af49b7277738270a61d5dfbbac53 @@ -0,0 +1,3 @@ +x +0E]+f/H^S7I&I }Ѧ~.aǾT9:0%FWT-}E=&E^+"#1%N̪tђ*t +M }7/aUQJ8K-8q?s}yVh)>#Chq??F. \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/74/244487ab29dc413ae1f98e4fa40256a0787212 deleted file mode 100644 index 3a76ae79effe1c72a419c2210cf38012f46a303c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 147 zcmV;E0Brww0gaA93d0}}0DJZo-V0@2HQ9wy3OVH&x~?=3n-DDY`OOo09cEx;Yi;S) zF<$ziYFUZW2t}w6mV&9~S|Ye{&^nSjBJ^2M%$^Q?cPm7p5(fq<9s<@Fm?J>Uq&|em zkup{hlRo{m9d?@SeVU*8O>JNGCR=-0H=F@r@NBPu0Oq9URM$UsQ(0mU)^{@(i`C54IB_6da?L)PpG_(us})H>u>wsO-fiuUKr2(#p~h{_LY|1i z;t4pRMy(=TVt9Hfvmi&wl0XR%sIp|B1p^7IM{hpIL=)fo@3y<+$$cJA-*)GA`L{#a p+Lyx=aS0e^aPQy&rm>EQZZGobyt>BM;XmAMy>|XFeE^S-O@)lXTuuN0 literal 0 HcmV?d00001 diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/84/988130b443577e2afc62d4103f92fcbed33add b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/84/988130b443577e2afc62d4103f92fcbed33add deleted file mode 100644 index 2e8429425b871e8af3c5bd6fd578e5f971f90e35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 118 zcmV-+0Ez#20gcT;3WG2ZM&Yh=irE*+B#yBIMGCGwMq>U@!4Q!YJbpbww~r6rQcGDI zS&>^i0J7-dhp4J4+J5jMS%9B0OJ)~Sb_!7uXTrCA>Os>?uW5ec3}xT&SZW!``ktAc YbV_%2%;u`sq~T9)^16Y|57)jc*!@d5lmGw# diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/b2/45d3aa308ffdfdd194a94ad84a678a8a7a028c b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/b2/45d3aa308ffdfdd194a94ad84a678a8a7a028c new file mode 100644 index 000000000..847d9486a --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/b2/45d3aa308ffdfdd194a94ad84a678a8a7a028c @@ -0,0 +1,3 @@ +xM +0@a9ȄIF1d -%ǷGpN}W7 j*T+eՒ(O5iDd5"Q5V?~}m[R +#33;1Ol^: \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/bc/4b1a5b9b60d70107fab9078137bad212e29567 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/bc/4b1a5b9b60d70107fab9078137bad212e29567 new file mode 100644 index 000000000..07c62f2ce --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/bc/4b1a5b9b60d70107fab9078137bad212e29567 @@ -0,0 +1 @@ +xAj0E)f($kFBV9Cb$lC$[7w/.×1&!e.<ѱDtb9R7ޤu@ cfŅ-<#*y|S\oWyMk: 'mVzDukz+<y68I4sdWNy \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c2/71c5cc28c056383278c655b4e227fa69b06073 deleted file mode 100644 index 9eb55491472fd9e6f7fe5d602e168001cf8a1a52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 185 zcmV;q07n0K0gcZwY6CG4M&Z-F%j?zUcsexd#YQSMH|DN$cx diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/c8/84f894908d3042f54995005b8e3445958b2fcc deleted file mode 100644 index 92422c064dd6d8da7d13d1eea47a39ec57021bbf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmV;F0Biqv0gcWv3d1lAK+(=Vh4(^{CC84SltQK)Ly=_~NSY8_=<%B)bp5>H>$a|Q z^MUcw4l`dMCskGj78SulsZN@OyIRPQAVrQT2Di&$@87^%zIP^u;@F#uJ@ zs*@EWDaFaBy|%*-qrVU1)4sCqi`{fvA3mfG05B5!Dp9izPwwixSa3g*wK<@8 CD@UvV diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/e7/02e6113eff6883a33505e2b28cff2df3420fed b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/e7/02e6113eff6883a33505e2b28cff2df3420fed new file mode 100644 index 000000000..f70dd165a --- /dev/null +++ b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/e7/02e6113eff6883a33505e2b28cff2df3420fed @@ -0,0 +1,3 @@ +xM +0@a9EL&1& Z[Jo-l:w_j+d! f_")H3; J-YA/%2C)T +d_a_^Eo0!0g=MuP; \ No newline at end of file diff --git a/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b b/test/integration/stashUnstagedChanges/expected/repo/.git_keep/objects/ed/408704bb5eb653ceacee9ce485ef1bb0ea7a0b deleted file mode 100644 index b7c7df645bc8e489f7be3691c80d36c37b6b6b2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmV;h08jsT0gaA9YQr!PMZ4B1W?v}d$wV4K2!X6}hLXid9@&Q24z>bqPhTA&yZ;}b z$It6LPZfyhqi$y4eM(s{=3YxLKI9S)gsG&!!YN5niNY-Ishceo0u#3yG*Rp`cL%ku zL@_SPNJp<2Bv40AUv*qJxZdD&y