diff --git a/src/config.rs b/src/config.rs index 1bb410d5cf..c3225a9a8c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -112,6 +112,7 @@ pub struct StyleConfig { pub branch: StyleConfigEntry, pub remote: StyleConfigEntry, pub tag: StyleConfigEntry, + pub author: StyleConfigEntry, } #[derive(Default, Debug, Deserialize)] diff --git a/src/default_config.toml b/src/default_config.toml index 0f0dbfae1c..49d91bf9c2 100644 --- a/src/default_config.toml +++ b/src/default_config.toml @@ -99,6 +99,7 @@ hash = { fg = "yellow" } branch = { fg = "green" } remote = { fg = "red" } tag = { fg = "yellow" } +author = { fg = "magenta" } [bindings] root.quit = ["q", "esc"] diff --git a/src/item_data.rs b/src/item_data.rs index 1bed5a5301..596b3727cb 100644 --- a/src/item_data.rs +++ b/src/item_data.rs @@ -17,6 +17,7 @@ pub(crate) enum ItemData { short_id: String, associated_references: Vec, summary: String, + author: String, }, Untracked(PathBuf), Delta { diff --git a/src/items.rs b/src/items.rs index f3b3db0fc8..3870aeff40 100644 --- a/src/items.rs +++ b/src/items.rs @@ -58,6 +58,7 @@ impl Item { short_id, associated_references, summary, + author, .. } => Line::from_iter(itertools::intersperse( iter::once(Span::styled(short_id, &config.style.hash)) @@ -74,6 +75,7 @@ impl Item { } }), ) + .chain([Span::styled(author, &config.style.author)]) .chain([Span::raw(summary)]), Span::raw(" "), )), @@ -360,6 +362,7 @@ pub(crate) fn log( short_id, associated_references, summary: commit.summary().unwrap_or("").to_string(), + author: commit.author().name().unwrap_or("").to_string(), }; Ok(Some(Item { diff --git a/src/tests/snapshots/gitu__tests__binary_file.snap b/src/tests/snapshots/gitu__tests__binary_file.snap index fe595300a4..7dcdf16747 100644 --- a/src/tests/snapshots/gitu__tests__binary_file.snap +++ b/src/tests/snapshots/gitu__tests__binary_file.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() ▌added binary-file | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 2ac73f967fc59190 +styles_hash: 1a311c571aeba00f diff --git a/src/tests/snapshots/gitu__tests__branch__checkout_new_branch.snap b/src/tests/snapshots/gitu__tests__branch__checkout_new_branch.snap index 3b0cc6f1ef..0d43248297 100644 --- a/src/tests/snapshots/gitu__tests__branch__checkout_new_branch.snap +++ b/src/tests/snapshots/gitu__tests__branch__checkout_new_branch.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch new | | Recent commits | - b66a0bf main merged new origin/main add initial-file | + b66a0bf main merged new origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git checkout -b new | Switched to a new branch 'new' | -styles_hash: 2afc72138214b087 +styles_hash: 33118d77bd00d80d diff --git a/src/tests/snapshots/gitu__tests__branch__delete_branch_empty.snap b/src/tests/snapshots/gitu__tests__branch__delete_branch_empty.snap index 5e19878d05..bccc32392e 100644 --- a/src/tests/snapshots/gitu__tests__branch__delete_branch_empty.snap +++ b/src/tests/snapshots/gitu__tests__branch__delete_branch_empty.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main merged origin/main add initial-file | + b66a0bf main merged origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Branch name required | -styles_hash: e1391c67392b2270 +styles_hash: 66d6b6ad0f3d56ac diff --git a/src/tests/snapshots/gitu__tests__branch__delete_branch_input.snap b/src/tests/snapshots/gitu__tests__branch__delete_branch_input.snap index 10ec0d736e..97aaef46a0 100644 --- a/src/tests/snapshots/gitu__tests__branch__delete_branch_input.snap +++ b/src/tests/snapshots/gitu__tests__branch__delete_branch_input.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git branch -d merged | Deleted branch merged (was b66a0bf). | -styles_hash: dce6312dfc6aa477 +styles_hash: 9042510a86ca21ea diff --git a/src/tests/snapshots/gitu__tests__branch__delete_unmerged_branch.snap b/src/tests/snapshots/gitu__tests__branch__delete_unmerged_branch.snap index 9bf5109dce..402b74d655 100644 --- a/src/tests/snapshots/gitu__tests__branch__delete_unmerged_branch.snap +++ b/src/tests/snapshots/gitu__tests__branch__delete_unmerged_branch.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main merged origin/main add initial-file | + b66a0bf main merged origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git branch -d -f unmerged | Deleted branch unmerged (was c84f226). | -styles_hash: 50fae40f3cb39dd3 +styles_hash: 29109c15a5c71f2a diff --git a/src/tests/snapshots/gitu__tests__branch__spinoff_branch.snap b/src/tests/snapshots/gitu__tests__branch__spinoff_branch.snap index e6106037c4..6d09dec8ee 100644 --- a/src/tests/snapshots/gitu__tests__branch__spinoff_branch.snap +++ b/src/tests/snapshots/gitu__tests__branch__spinoff_branch.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch new | | Recent commits | - b66a0bf main merged new origin/main add initial-file | + b66a0bf main merged new origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() $ git checkout -b new | Switched to a new branch 'new' | > Branch main not changed | -styles_hash: f6b1f1b8641cb19a +styles_hash: d4814d5edbc79f61 diff --git a/src/tests/snapshots/gitu__tests__branch__spinoff_branch_with_unmerged_commits.snap b/src/tests/snapshots/gitu__tests__branch__spinoff_branch_with_unmerged_commits.snap index d4d00af7a6..80021b4bb6 100644 --- a/src/tests/snapshots/gitu__tests__branch__spinoff_branch_with_unmerged_commits.snap +++ b/src/tests/snapshots/gitu__tests__branch__spinoff_branch_with_unmerged_commits.snap @@ -5,8 +5,8 @@ expression: ctx.redact_buffer() ▌On branch new | | Recent commits | - c84f226 new add first commit | - b66a0bf main origin/main add initial-file | + c84f226 new Author Name add first commit | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ $ git checkout -b new Switched to a new branch 'new' | $ git update-ref -m "reset: moving to b66a0bf82020d6a386e94d0fceedec1f817d20c7" | > Branch main was reset to b66a0bf82020d6a386e94d0fceedec1f817d20c7 | -styles_hash: 3b16474e21a1768a +styles_hash: 139b14b7feac0bfc diff --git a/src/tests/snapshots/gitu__tests__branch__spinoff_existing_branch.snap b/src/tests/snapshots/gitu__tests__branch__spinoff_existing_branch.snap index a5bcfdbb21..b67795c5ec 100644 --- a/src/tests/snapshots/gitu__tests__branch__spinoff_existing_branch.snap +++ b/src/tests/snapshots/gitu__tests__branch__spinoff_existing_branch.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main merged origin/main add initial-file | + b66a0bf main merged origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Cannot spin-off unmerged. It already exists | -styles_hash: bde5e651489b5245 +styles_hash: d2fea42ee57930ea diff --git a/src/tests/snapshots/gitu__tests__chmod_file.snap b/src/tests/snapshots/gitu__tests__chmod_file.snap index 0a8cc8b452..8045d71499 100644 --- a/src/tests/snapshots/gitu__tests__chmod_file.snap +++ b/src/tests/snapshots/gitu__tests__chmod_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() modified test-file… | | Recent commits | - d95f7af main add test-file | - b66a0bf origin/main add initial-file | + d95f7af main Author Name add test-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 1e469a2968dd9d14 +styles_hash: f037e8b96a744497 diff --git a/src/tests/snapshots/gitu__tests__commit__commit_extend.snap b/src/tests/snapshots/gitu__tests__commit__commit_extend.snap index b417da9858..a136425c69 100644 --- a/src/tests/snapshots/gitu__tests__commit__commit_extend.snap +++ b/src/tests/snapshots/gitu__tests__commit__commit_extend.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch and 'origin/main' have diverged,and have 1 and 1 different commits…| | Recent commits | - 5dfe782 main add initial-file | + 5dfe782 main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git commit --amend --no-edit | -styles_hash: 33ce7d91041bde51 +styles_hash: 29cb78853023d7a4 diff --git a/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup.snap b/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup.snap index 68520b2e6f..b334ac9ac5 100644 --- a/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup.snap +++ b/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup.snap @@ -6,9 +6,9 @@ expression: ctx.redact_buffer() Your branch is ahead of 'origin/main' by 2 commit(s). | | Recent commits | - 2809bd7 main modify instant_fixup.txt | - fa09c62 add instant_fixup.txt | -▌b66a0bf origin/main add initial-file | + 2809bd7 main Author Name modify instant_fixup.txt | + fa09c62 Author Name add instant_fixup.txt | +▌b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ $ git commit --fixup efc77f3bea683ce4ea27f2e9d7d1bdf04c91a57f Author: Author Name | 1 file changed, 1 insertion(+), 1 deletion(-) | $ git rebase -i -q --autostash --keep-empty --autosquash efc77f3bea683ce4ea27f2e| -styles_hash: 6969ae121e8e1f63 +styles_hash: ad13416608c50ff8 diff --git a/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup_stashes_changes_and_keeps_empty.snap b/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup_stashes_changes_and_keeps_empty.snap index d62040a827..8d75d19878 100644 --- a/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup_stashes_changes_and_keeps_empty.snap +++ b/src/tests/snapshots/gitu__tests__commit__commit_instant_fixup_stashes_changes_and_keeps_empty.snap @@ -10,10 +10,10 @@ expression: ctx.redact_buffer() +unstaged | | Recent commits | - bada738 main empty commit | - 2809bd7 modify instant_fixup.txt | - fa09c62 add instant_fixup.txt | -▌b66a0bf origin/main add initial-file | + bada738 main Author Name empty commit | + 2809bd7 Author Name modify instant_fixup.txt | + fa09c62 Author Name add instant_fixup.txt | +▌b66a0bf origin/main Author Name add initial-file | ────────────────────────────────────────────────────────────────────────────────| $ git commit --fixup efc77f3bea683ce4ea27f2e9d7d1bdf04c91a57f | [main bec1be7] fixup! modify instant_fixup.txt | @@ -22,4 +22,4 @@ $ git commit --fixup efc77f3bea683ce4ea27f2e9d7d1bdf04c91a57f $ git rebase -i -q --autostash --keep-empty --autosquash efc77f3bea683ce4ea27f2e| Applied autostash. | Created autostash: d682ced | -styles_hash: 22852fd934c64bf +styles_hash: f59845009e9ead1f diff --git a/src/tests/snapshots/gitu__tests__commit__commit_menu.snap b/src/tests/snapshots/gitu__tests__commit__commit_menu.snap index c0663a3c9e..b99a5537d6 100644 --- a/src/tests/snapshots/gitu__tests__commit__commit_menu.snap +++ b/src/tests/snapshots/gitu__tests__commit__commit_menu.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() added new_file.txt… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() q/esc Quit/Close -R Claim authorship and reset author date (--reset-author) | -s Add Signed-off-by line (--signoff) | -v Show diff of changes to be committed (--verbose) | -styles_hash: 76a5f2a964e77056 +styles_hash: e7a0dd34947e4e24 diff --git a/src/tests/snapshots/gitu__tests__copied_file.snap b/src/tests/snapshots/gitu__tests__copied_file.snap index 5d775ea390..da44dbbeed 100644 --- a/src/tests/snapshots/gitu__tests__copied_file.snap +++ b/src/tests/snapshots/gitu__tests__copied_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() added copied-file… | | Recent commits | - b00a756 main add new-file | - b66a0bf origin/main add initial-file | + b00a756 main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 2bb10d15c578771b +styles_hash: 3611ae755e157328 diff --git a/src/tests/snapshots/gitu__tests__crlf_diff.snap b/src/tests/snapshots/gitu__tests__crlf_diff.snap index c5207c326b..e6133c2efa 100644 --- a/src/tests/snapshots/gitu__tests__crlf_diff.snap +++ b/src/tests/snapshots/gitu__tests__crlf_diff.snap @@ -13,8 +13,8 @@ expression: ctx.redact_buffer() +changed | | Recent commits | - 13d662a main add crlf.txt | - b66a0bf origin/main add initial-file | + 13d662a main Author Name add crlf.txt | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: b0d01159a2674933 +styles_hash: 44db695b405ae7f5 diff --git a/src/tests/snapshots/gitu__tests__deleted_file.snap b/src/tests/snapshots/gitu__tests__deleted_file.snap index 85f25ae16a..a30a08ac79 100644 --- a/src/tests/snapshots/gitu__tests__deleted_file.snap +++ b/src/tests/snapshots/gitu__tests__deleted_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() deleted new-file… | | Recent commits | - b00a756 main add new-file | - b66a0bf origin/main add initial-file | + b00a756 main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: badf8c339aba8de6 +styles_hash: baea5352b58a717c diff --git a/src/tests/snapshots/gitu__tests__discard__discard_file_move.snap b/src/tests/snapshots/gitu__tests__discard__discard_file_move.snap index 5ecfea51be..23b6602bac 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_file_move.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_file_move.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | -▌46c81ca main add new-file | - b66a0bf origin/main add initial-file | +▌46c81ca main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git apply --reverse --index --recount | -styles_hash: ba16ed1baaafac0e +styles_hash: 5b72e00995e8a712 diff --git a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_delta.snap b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_delta.snap index cbcf578fea..6ec08f9112 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_delta.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_delta.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | -▌4f3ed19 main add file-one | - b66a0bf origin/main add initial-file | +▌4f3ed19 main Author Name add file-one | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git apply --reverse --recount | -styles_hash: 1b874ccb583c7648 +styles_hash: 1eba0189b4625b01 diff --git a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_hunk.snap b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_hunk.snap index 028a4a2a09..6e6cdf469f 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_hunk.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_hunk.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | - 4f3ed19 main add file-one | -▌b66a0bf origin/main add initial-file | + 4f3ed19 main Author Name add file-one | +▌b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git apply --reverse --recount | -styles_hash: 8f7c4c587f69ffd4 +styles_hash: 9c1f128e96d75bd diff --git a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_line.snap b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_line.snap index dfae36aa93..256eb0f27c 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_unstaged_line.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_unstaged_line.snap @@ -12,8 +12,8 @@ expression: ctx.redact_buffer() ▌-BAR | | Recent commits | - 4f3ed19 main add file-one | - b66a0bf origin/main add initial-file | + 4f3ed19 main Author Name add file-one | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git apply --reverse --recount | -styles_hash: baa3baebf7866985 +styles_hash: 2f83dffa64ecd213 diff --git a/src/tests/snapshots/gitu__tests__discard__discard_untracked_file.snap b/src/tests/snapshots/gitu__tests__discard__discard_untracked_file.snap index 7c37b544b5..66e32c93a1 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_untracked_file.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_untracked_file.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() Your branch is up to date with 'origin/main'. | | Recent commits | -▌b66a0bf main origin/main add initial-file | +▌b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git clean --force some-file | Removing some-file | -styles_hash: 96f58e6839f4cd +styles_hash: 80609073d0eff5b8 diff --git a/src/tests/snapshots/gitu__tests__discard__discard_untracked_staged_file.snap b/src/tests/snapshots/gitu__tests__discard__discard_untracked_staged_file.snap index f04c621c27..ce4144575c 100644 --- a/src/tests/snapshots/gitu__tests__discard__discard_untracked_staged_file.snap +++ b/src/tests/snapshots/gitu__tests__discard__discard_untracked_staged_file.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() Your branch is up to date with 'origin/main'. | | Recent commits | -▌b66a0bf main origin/main add initial-file | +▌b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git apply --reverse --index --recount | -styles_hash: b3e7414ab8f124a1 +styles_hash: 57aff06396630734 diff --git a/src/tests/snapshots/gitu__tests__editor__exit_from_prompt_exits_menu.snap b/src/tests/snapshots/gitu__tests__editor__exit_from_prompt_exits_menu.snap index d03704f938..f3ee14838d 100644 --- a/src/tests/snapshots/gitu__tests__editor__exit_from_prompt_exits_menu.snap +++ b/src/tests/snapshots/gitu__tests__editor__exit_from_prompt_exits_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__editor__re_enter_prompt_from_menu.snap b/src/tests/snapshots/gitu__tests__editor__re_enter_prompt_from_menu.snap index 225503bda1..0759ccf0db 100644 --- a/src/tests/snapshots/gitu__tests__editor__re_enter_prompt_from_menu.snap +++ b/src/tests/snapshots/gitu__tests__editor__re_enter_prompt_from_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Checkout: › █ | -styles_hash: 43da189f53b3be3d +styles_hash: c777a87edc3acd15 diff --git a/src/tests/snapshots/gitu__tests__ext_diff.snap b/src/tests/snapshots/gitu__tests__ext_diff.snap index 25b00167a5..cc7b540183 100644 --- a/src/tests/snapshots/gitu__tests__ext_diff.snap +++ b/src/tests/snapshots/gitu__tests__ext_diff.snap @@ -16,10 +16,10 @@ expression: ctx.redact_buffer() +staged | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | | | -styles_hash: 78d73e0b179ed03a +styles_hash: 85df0716104e0a43 diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere.snap index 692c50ace5..b408ea5918 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git fetch origin | -styles_hash: 91a0547682745b50 +styles_hash: 6d8a7e90a5306e17 diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere_prompt.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere_prompt.snap index 9d7688841e..6f46b8a679 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere_prompt.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_elsewhere_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Select remote: › █ | -styles_hash: d4bf27d871c90729 +styles_hash: acf61a44ec7643bb diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote.snap index 692c50ace5..b408ea5918 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git fetch origin | -styles_hash: 91a0547682745b50 +styles_hash: 6d8a7e90a5306e17 diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote_prompt.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote_prompt.snap index 4d8eaece5e..8acf6ebfa5 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote_prompt.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_push_remote_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set pushRemote then fetch: › █ | -styles_hash: 5912af6faa12579e +styles_hash: bb963a29954b762 diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream.snap index 692c50ace5..b408ea5918 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git fetch origin | -styles_hash: 91a0547682745b50 +styles_hash: 6d8a7e90a5306e17 diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream_prompt.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream_prompt.snap index cc1bb636d2..ad852124e8 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream_prompt.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_from_upstream_prompt.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set upstream then fetch: › █ | -styles_hash: a9ce1b225e9e7e38 +styles_hash: a66afd09a757f21c diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_menu_existing_push_remote_and_upstream.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_menu_existing_push_remote_and_upstream.snap index 10e7afa1ac..3ad14ec44d 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_menu_existing_push_remote_and_upstream.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_menu_existing_push_remote_and_upstream.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u from origin | e from elsewhere | q/esc Quit/Close | -styles_hash: 17731e0c232c3b88 +styles_hash: cc26e025229ee9aa diff --git a/src/tests/snapshots/gitu__tests__fetch__fetch_menu_no_remote_or_upstream_set.snap b/src/tests/snapshots/gitu__tests__fetch__fetch_menu_no_remote_or_upstream_set.snap index 3bd4e8e3e4..5afed0261d 100644 --- a/src/tests/snapshots/gitu__tests__fetch__fetch_menu_no_remote_or_upstream_set.snap +++ b/src/tests/snapshots/gitu__tests__fetch__fetch_menu_no_remote_or_upstream_set.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u from upstream, setting that | e from elsewhere | q/esc Quit/Close | -styles_hash: fbb28b712f78e61e +styles_hash: 5896edf863fb3442 diff --git a/src/tests/snapshots/gitu__tests__fetch_all.snap b/src/tests/snapshots/gitu__tests__fetch_all.snap index 03a80f619e..ee10214e19 100644 --- a/src/tests/snapshots/gitu__tests__fetch_all.snap +++ b/src/tests/snapshots/gitu__tests__fetch_all.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is behind 'origin/main' by 1 commit(s). | | Recent commits | - b66a0bf main add initial-file | + b66a0bf main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() $ git fetch --all --jobs 10 | From file:// b66a0bf..d07f2d3 main -> origin/main | -styles_hash: f448eeaae20a6982 +styles_hash: f4b67bf81887cc13 diff --git a/src/tests/snapshots/gitu__tests__go_down_past_collapsed.snap b/src/tests/snapshots/gitu__tests__go_down_past_collapsed.snap index 2955cde860..04b06c8806 100644 --- a/src/tests/snapshots/gitu__tests__go_down_past_collapsed.snap +++ b/src/tests/snapshots/gitu__tests__go_down_past_collapsed.snap @@ -10,9 +10,9 @@ expression: ctx.redact_buffer() ▌modified file-two… | | Recent commits | - e45938a main add file-two | - b3cf8e8 add file-one | - b66a0bf origin/main add initial-file | + e45938a main Author Name add file-two | + b3cf8e8 Author Name add file-one | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: ced58bcec150cda1 +styles_hash: 74cbcc45479b1cf5 diff --git a/src/tests/snapshots/gitu__tests__help_menu.snap b/src/tests/snapshots/gitu__tests__help_menu.snap index 474e2a7073..1d401ddbf4 100644 --- a/src/tests/snapshots/gitu__tests__help_menu.snap +++ b/src/tests/snapshots/gitu__tests__help_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | ────────────────────────────────────────────────────────────────────────────────| Help Submenu On branch main | Y Show Refs b Branch tab Fold | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() g Refresh X Reset | q/esc Quit/Close V Revert | z Stash | -styles_hash: 43322e31c74e471 +styles_hash: 6ade783a719d70eb diff --git a/src/tests/snapshots/gitu__tests__hide_untracked.snap b/src/tests/snapshots/gitu__tests__hide_untracked.snap index 2f484aa8d3..399eba1134 100644 --- a/src/tests/snapshots/gitu__tests__hide_untracked.snap +++ b/src/tests/snapshots/gitu__tests__hide_untracked.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__inside_submodule.snap b/src/tests/snapshots/gitu__tests__inside_submodule.snap index 2f484aa8d3..399eba1134 100644 --- a/src/tests/snapshots/gitu__tests__inside_submodule.snap +++ b/src/tests/snapshots/gitu__tests__inside_submodule.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__log.snap b/src/tests/snapshots/gitu__tests__log.snap index 3b8cca5112..0f90c4ded1 100644 --- a/src/tests/snapshots/gitu__tests__log.snap +++ b/src/tests/snapshots/gitu__tests__log.snap @@ -2,9 +2,9 @@ source: src/tests/mod.rs expression: ctx.redact_buffer() --- -▌0c2c6c3 main a-tag add secondfile | - 223428c annotated add firstfile | - b66a0bf origin/main add initial-file | +▌0c2c6c3 main a-tag Author Name add secondfile | + 223428c annotated Author Name add firstfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 7c34283c9cbd748b +styles_hash: 6b36cdba7fd05e5c diff --git a/src/tests/snapshots/gitu__tests__log__grep_prompt.snap b/src/tests/snapshots/gitu__tests__log__grep_prompt.snap index cef1f071d9..4d993e2906 100644 --- a/src/tests/snapshots/gitu__tests__log__grep_prompt.snap +++ b/src/tests/snapshots/gitu__tests__log__grep_prompt.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() q/esc Quit/Close | ────────────────────────────────────────────────────────────────────────────────| ? Search messages: › █ | -styles_hash: 30915effaeaeb2e3 +styles_hash: 8a433c0be1b6ab9a diff --git a/src/tests/snapshots/gitu__tests__log__grep_second.snap b/src/tests/snapshots/gitu__tests__log__grep_second.snap index a612fdf680..0ccc85d977 100644 --- a/src/tests/snapshots/gitu__tests__log__grep_second.snap +++ b/src/tests/snapshots/gitu__tests__log__grep_second.snap @@ -2,7 +2,7 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌6c08cf7 add second commit | +▌6c08cf7 Author Name add second commit | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 48d19316a51368e3 +styles_hash: 5e6126f144261450 diff --git a/src/tests/snapshots/gitu__tests__log__grep_second_other.snap b/src/tests/snapshots/gitu__tests__log__grep_second_other.snap index a612fdf680..0ccc85d977 100644 --- a/src/tests/snapshots/gitu__tests__log__grep_second_other.snap +++ b/src/tests/snapshots/gitu__tests__log__grep_second_other.snap @@ -2,7 +2,7 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌6c08cf7 add second commit | +▌6c08cf7 Author Name add second commit | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 48d19316a51368e3 +styles_hash: 5e6126f144261450 diff --git a/src/tests/snapshots/gitu__tests__log__grep_set_example.snap b/src/tests/snapshots/gitu__tests__log__grep_set_example.snap index 2bfcca8eeb..e63ebde82f 100644 --- a/src/tests/snapshots/gitu__tests__log__grep_set_example.snap +++ b/src/tests/snapshots/gitu__tests__log__grep_set_example.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() l current -F Search messages (--grep=example) | o other -n Limit number of commits (-n=256) | q/esc Quit/Close | -styles_hash: 5877b9adb59fe24d +styles_hash: 7f4047d9a97d3883 diff --git a/src/tests/snapshots/gitu__tests__log__limit_2_commits.snap b/src/tests/snapshots/gitu__tests__log__limit_2_commits.snap index 90a5ae2fed..e6497db451 100644 --- a/src/tests/snapshots/gitu__tests__log__limit_2_commits.snap +++ b/src/tests/snapshots/gitu__tests__log__limit_2_commits.snap @@ -2,8 +2,8 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌8bb5532 main add first commit | - 6c08cf7 add second commit | +▌8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: a908290abddd40c9 +styles_hash: 23a4e5c4fc1c9845 diff --git a/src/tests/snapshots/gitu__tests__log__limit_2_commits_other.snap b/src/tests/snapshots/gitu__tests__log__limit_2_commits_other.snap index 90a5ae2fed..e6497db451 100644 --- a/src/tests/snapshots/gitu__tests__log__limit_2_commits_other.snap +++ b/src/tests/snapshots/gitu__tests__log__limit_2_commits_other.snap @@ -2,8 +2,8 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌8bb5532 main add first commit | - 6c08cf7 add second commit | +▌8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: a908290abddd40c9 +styles_hash: 23a4e5c4fc1c9845 diff --git a/src/tests/snapshots/gitu__tests__log__limit_invalid.snap b/src/tests/snapshots/gitu__tests__log__limit_invalid.snap index 5fbc1c74e3..bfef9a9f16 100644 --- a/src/tests/snapshots/gitu__tests__log__limit_invalid.snap +++ b/src/tests/snapshots/gitu__tests__log__limit_invalid.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Value must be a number greater than 0 | -styles_hash: bd845daabc6ec344 +styles_hash: 6361cc262eeefb5f diff --git a/src/tests/snapshots/gitu__tests__log__limit_prompt.snap b/src/tests/snapshots/gitu__tests__log__limit_prompt.snap index cdca916481..23d2f98050 100644 --- a/src/tests/snapshots/gitu__tests__log__limit_prompt.snap +++ b/src/tests/snapshots/gitu__tests__log__limit_prompt.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() q/esc Quit/Close | ────────────────────────────────────────────────────────────────────────────────| ? Limit number of commits (default 256): › █ | -styles_hash: 99ca458c7c196a27 +styles_hash: 1fc25fc7ad05bbd3 diff --git a/src/tests/snapshots/gitu__tests__log__limit_set_10.snap b/src/tests/snapshots/gitu__tests__log__limit_set_10.snap index 073a41dbbd..1a227c0b6d 100644 --- a/src/tests/snapshots/gitu__tests__log__limit_set_10.snap +++ b/src/tests/snapshots/gitu__tests__log__limit_set_10.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() l current -F Search messages (--grep) | o other -n Limit number of commits (-n=10) | q/esc Quit/Close | -styles_hash: 195bb974698466ed +styles_hash: 5a5bb0d4b89ad0f2 diff --git a/src/tests/snapshots/gitu__tests__log__log_other.snap b/src/tests/snapshots/gitu__tests__log__log_other.snap index ed6b5a89a1..af894d352f 100644 --- a/src/tests/snapshots/gitu__tests__log__log_other.snap +++ b/src/tests/snapshots/gitu__tests__log__log_other.snap @@ -2,9 +2,9 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | +▌6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 99c011aa1629f1d +styles_hash: 780330b656125ca diff --git a/src/tests/snapshots/gitu__tests__log__log_other_input.snap b/src/tests/snapshots/gitu__tests__log__log_other_input.snap index ed6b5a89a1..af894d352f 100644 --- a/src/tests/snapshots/gitu__tests__log__log_other_input.snap +++ b/src/tests/snapshots/gitu__tests__log__log_other_input.snap @@ -2,9 +2,9 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- -▌6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | +▌6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 99c011aa1629f1d +styles_hash: 780330b656125ca diff --git a/src/tests/snapshots/gitu__tests__log__log_other_invalid.snap b/src/tests/snapshots/gitu__tests__log__log_other_invalid.snap index 9f091e5705..ba1e476241 100644 --- a/src/tests/snapshots/gitu__tests__log__log_other_invalid.snap +++ b/src/tests/snapshots/gitu__tests__log__log_other_invalid.snap @@ -6,10 +6,10 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 8bb5532 main add first commit | - 6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | + 6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Couldn't find git revision: failed to parse revision specifier - Invalid patte| -styles_hash: b15bdaeca3de7005 +styles_hash: f20526cee8ed3a79 diff --git a/src/tests/snapshots/gitu__tests__log__log_other_prompt.snap b/src/tests/snapshots/gitu__tests__log__log_other_prompt.snap index 58b650f9f0..b0b56af9fc 100644 --- a/src/tests/snapshots/gitu__tests__log__log_other_prompt.snap +++ b/src/tests/snapshots/gitu__tests__log__log_other_prompt.snap @@ -2,10 +2,10 @@ source: src/tests/log.rs expression: ctx.redact_buffer() --- - 8bb5532 main add first commit | -▌6c08cf7 add second commit | - 79e63f1 add third commit | - b66a0bf origin/main add initial-file | + 8bb5532 main Author Name add first commit | +▌6c08cf7 Author Name add second commit | + 79e63f1 Author Name add third commit | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Log rev (default 6c08cf78a4544ae4dda8e6161a61070867c60246): › █ | -styles_hash: 3bf733ac5c610d53 +styles_hash: e59bd062be897cb4 diff --git a/src/tests/snapshots/gitu__tests__merge__merge_ff_only.snap b/src/tests/snapshots/gitu__tests__merge__merge_ff_only.snap index d5029ac271..24ccebf6bc 100644 --- a/src/tests/snapshots/gitu__tests__merge__merge_ff_only.snap +++ b/src/tests/snapshots/gitu__tests__merge__merge_ff_only.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | - 46c81ca main other-branch add new-file | - b66a0bf origin/main add initial-file | + 46c81ca main other-branch Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git merge --ff-only other-branch | -styles_hash: 22e96ae1e6b12a5f +styles_hash: 967103b5dc263341 diff --git a/src/tests/snapshots/gitu__tests__merge__merge_menu.snap b/src/tests/snapshots/gitu__tests__merge__merge_menu.snap index 9e3885316e..fa6fc0037e 100644 --- a/src/tests/snapshots/gitu__tests__merge__merge_menu.snap +++ b/src/tests/snapshots/gitu__tests__merge__merge_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() a abort -n No fast-forward (--no-ff) | c continue | q/ Quit/Close | -styles_hash: 7b86e45a0c70a078 +styles_hash: 574e3c6156d7056a diff --git a/src/tests/snapshots/gitu__tests__merge__merge_no_ff.snap b/src/tests/snapshots/gitu__tests__merge__merge_no_ff.snap index c0b74eb779..b8eeb281d8 100644 --- a/src/tests/snapshots/gitu__tests__merge__merge_no_ff.snap +++ b/src/tests/snapshots/gitu__tests__merge__merge_no_ff.snap @@ -6,9 +6,9 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 2 commit(s). | | Recent commits | - 4d7c2d6 main Merge branch 'other-branch' | - b66a0bf origin/main add initial-file | - 46c81ca other-branch add new-file | + 4d7c2d6 main Author Name Merge branch 'other-branch' | + b66a0bf origin/main Author Name add initial-file | + 46c81ca other-branch Author Name add new-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git merge --no-ff other-branch | -styles_hash: 533f988da88d3c89 +styles_hash: 99d34e845a6b848d diff --git a/src/tests/snapshots/gitu__tests__merge__merge_prompt.snap b/src/tests/snapshots/gitu__tests__merge__merge_prompt.snap index 28c7bfcfd6..a4e9ea6c13 100644 --- a/src/tests/snapshots/gitu__tests__merge__merge_prompt.snap +++ b/src/tests/snapshots/gitu__tests__merge__merge_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Merge: › █ | -styles_hash: 60de28e06c7442d8 +styles_hash: 9c0cda28cf8f3350 diff --git a/src/tests/snapshots/gitu__tests__merge_conflict.snap b/src/tests/snapshots/gitu__tests__merge_conflict.snap index b909fe8ca1..bd846243fe 100644 --- a/src/tests/snapshots/gitu__tests__merge_conflict.snap +++ b/src/tests/snapshots/gitu__tests__merge_conflict.snap @@ -13,13 +13,13 @@ expression: ctx.redact_buffer() unmerged new-file-2… | | Recent commits | - 44bb4dc main modify new-file-2 | - 174f1f4 modify new-file | - b57d72c add new-file-2 | - 46c81ca add new-file | - b66a0bf origin/main add initial-file | + 44bb4dc main Author Name modify new-file-2 | + 174f1f4 Author Name modify new-file | + b57d72c Author Name add new-file-2 | + 46c81ca Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | | -styles_hash: f80e04421a39123 +styles_hash: b66b15684854e4f5 diff --git a/src/tests/snapshots/gitu__tests__mouse_select_hunk_line.snap b/src/tests/snapshots/gitu__tests__mouse_select_hunk_line.snap index 962de5e541..898e9cc451 100644 --- a/src/tests/snapshots/gitu__tests__mouse_select_hunk_line.snap +++ b/src/tests/snapshots/gitu__tests__mouse_select_hunk_line.snap @@ -16,10 +16,10 @@ expression: ctx.redact_buffer() added testfile… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | | | -styles_hash: 9e60da5cf26728a4 +styles_hash: c8d83e8480936c32 diff --git a/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_lines.snap b/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_lines.snap index 85379f83b6..db262baeee 100644 --- a/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_lines.snap +++ b/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_lines.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌modified testfile… | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 96cd3159bc3b002 +styles_hash: b16fa21bc23047fe diff --git a/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_region.snap b/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_region.snap index 85379f83b6..db262baeee 100644 --- a/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_region.snap +++ b/src/tests/snapshots/gitu__tests__mouse_select_ignore_empty_region.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌modified testfile… | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 96cd3159bc3b002 +styles_hash: b16fa21bc23047fe diff --git a/src/tests/snapshots/gitu__tests__mouse_select_item.snap b/src/tests/snapshots/gitu__tests__mouse_select_item.snap index 62a5aab872..bffc273eeb 100644 --- a/src/tests/snapshots/gitu__tests__mouse_select_item.snap +++ b/src/tests/snapshots/gitu__tests__mouse_select_item.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | -▌cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | +▌cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 47dabecbf8cc26c3 +styles_hash: ea379a76cf3d2f6a diff --git a/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_lines.snap b/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_lines.snap index 57b1ee67ee..3c76b72fc5 100644 --- a/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_lines.snap +++ b/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_lines.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌stash@0 On main: firststash | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 756a2316769a9390 +styles_hash: eb3ab71b0f73da36 diff --git a/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_region.snap b/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_region.snap index 57b1ee67ee..3c76b72fc5 100644 --- a/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_region.snap +++ b/src/tests/snapshots/gitu__tests__mouse_show_ignore_empty_region.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌stash@0 On main: firststash | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 756a2316769a9390 +styles_hash: eb3ab71b0f73da36 diff --git a/src/tests/snapshots/gitu__tests__mouse_toggle_selected_item.snap b/src/tests/snapshots/gitu__tests__mouse_toggle_selected_item.snap index 84fcd17ed9..710311ac43 100644 --- a/src/tests/snapshots/gitu__tests__mouse_toggle_selected_item.snap +++ b/src/tests/snapshots/gitu__tests__mouse_toggle_selected_item.snap @@ -14,12 +14,12 @@ expression: ctx.redact_buffer() ▌+moretest | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | | | | -styles_hash: ad7a877442acc5a7 +styles_hash: da57c7c25fa87c5b diff --git a/src/tests/snapshots/gitu__tests__mouse_wheel_scroll_up.snap b/src/tests/snapshots/gitu__tests__mouse_wheel_scroll_up.snap index af7fc1c057..6d9c473449 100644 --- a/src/tests/snapshots/gitu__tests__mouse_wheel_scroll_up.snap +++ b/src/tests/snapshots/gitu__tests__mouse_wheel_scroll_up.snap @@ -21,5 +21,5 @@ expression: ctx.redact_buffer() modified file30… | | Recent commits | - ae744cc main add file30 | -styles_hash: f0f5b789b0d8de8f + ae744cc main Author Name add file30 | +styles_hash: c9a04a8c4781fa68 diff --git a/src/tests/snapshots/gitu__tests__moved_file.snap b/src/tests/snapshots/gitu__tests__moved_file.snap index 4f1b217b41..4d1aeeeebd 100644 --- a/src/tests/snapshots/gitu__tests__moved_file.snap +++ b/src/tests/snapshots/gitu__tests__moved_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() renamed new-file -> moved-file… | | Recent commits | - 46c81ca main add new-file | - b66a0bf origin/main add initial-file | + 46c81ca main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 43a9ff7990a714d +styles_hash: 8b2176102ecd0b69 diff --git a/src/tests/snapshots/gitu__tests__new_commit.snap b/src/tests/snapshots/gitu__tests__new_commit.snap index d65de6c990..1e8fb24640 100644 --- a/src/tests/snapshots/gitu__tests__new_commit.snap +++ b/src/tests/snapshots/gitu__tests__new_commit.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | - e7eb2bd main add new-file | - b66a0bf origin/main add initial-file | + e7eb2bd main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: e010edc5475641a +styles_hash: 9cdef89c5de6096e diff --git a/src/tests/snapshots/gitu__tests__new_file.snap b/src/tests/snapshots/gitu__tests__new_file.snap index 4af855dd26..b21aacf53f 100644 --- a/src/tests/snapshots/gitu__tests__new_file.snap +++ b/src/tests/snapshots/gitu__tests__new_file.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() new-file | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 303d1d0cfdc63762 +styles_hash: c3443ede8a141b9f diff --git a/src/tests/snapshots/gitu__tests__non_ascii_filename.snap b/src/tests/snapshots/gitu__tests__non_ascii_filename.snap index 588ab7a999..116ee28230 100644 --- a/src/tests/snapshots/gitu__tests__non_ascii_filename.snap +++ b/src/tests/snapshots/gitu__tests__non_ascii_filename.snap @@ -12,8 +12,8 @@ expression: ctx.redact_buffer() ▌+hahaha | | Recent commits | - 8efa733 main add höhöhö | - b66a0bf origin/main add initial-file | + 8efa733 main Author Name add höhöhö | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: e79b629595dfd37f +styles_hash: ae90c12788933050 diff --git a/src/tests/snapshots/gitu__tests__non_utf8_diff.snap b/src/tests/snapshots/gitu__tests__non_utf8_diff.snap index 9d52e22b93..2578967a7c 100644 --- a/src/tests/snapshots/gitu__tests__non_utf8_diff.snap +++ b/src/tests/snapshots/gitu__tests__non_utf8_diff.snap @@ -13,8 +13,8 @@ expression: ctx.redact_buffer() +FileFile with invalid UTF-8: �� | | Recent commits | - 7c3d61a main add non_utf8.txt | - b66a0bf origin/main add initial-file | + 7c3d61a main Author Name add non_utf8.txt | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 232c1529ecd86f60 +styles_hash: 204a76e345029b95 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere.snap b/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere.snap index a2c3cf15b7..cb040a6909 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git pull origin | Already up to date. | -styles_hash: b401f8433340269 +styles_hash: 8b549163bb4b5419 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere_prompt.snap b/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere_prompt.snap index a512f5c390..8839192ee8 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere_prompt.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_from_elsewhere_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Select remote: › █ | -styles_hash: d4bf27d871c90729 +styles_hash: acf61a44ec7643bb diff --git a/src/tests/snapshots/gitu__tests__pull__pull_menu_existing_push_remote_and_upstream.snap b/src/tests/snapshots/gitu__tests__pull__pull_menu_existing_push_remote_and_upstream.snap index 4a334ac067..91ab201c13 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_menu_existing_push_remote_and_upstream.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_menu_existing_push_remote_and_upstream.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u from origin/main | e from elsewhere | q/esc Quit/Close | -styles_hash: 921d63089e120af4 +styles_hash: ab88f0222dcebae diff --git a/src/tests/snapshots/gitu__tests__pull__pull_menu_no_remote_or_upstream_set.snap b/src/tests/snapshots/gitu__tests__pull__pull_menu_no_remote_or_upstream_set.snap index e9eb2eeec7..976f1c461a 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_menu_no_remote_or_upstream_set.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_menu_no_remote_or_upstream_set.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u upstream, setting that | e from elsewhere | q/esc Quit/Close | -styles_hash: c5e18172f3d27bf5 +styles_hash: bee9d3801dc9362e diff --git a/src/tests/snapshots/gitu__tests__pull__pull_push_remote.snap b/src/tests/snapshots/gitu__tests__pull__pull_push_remote.snap index a024e5474a..bcdd107a71 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_push_remote.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_push_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ $ git pull origin refs/heads/main From file:// * branch main -> FETCH_HEAD | Already up to date. | -styles_hash: 8d2c591f621fface +styles_hash: c1702436d19081c3 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_push_remote_prompt.snap b/src/tests/snapshots/gitu__tests__pull__pull_push_remote_prompt.snap index e38e2c150a..9090201686 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_push_remote_prompt.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_push_remote_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set pushRemote then pull: › █ | -styles_hash: 74c60e97b247cdc3 +styles_hash: 932b980562d0735b diff --git a/src/tests/snapshots/gitu__tests__pull__pull_setup_push_remote.snap b/src/tests/snapshots/gitu__tests__pull__pull_setup_push_remote.snap index 4a334ac067..91ab201c13 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_setup_push_remote.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_setup_push_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u from origin/main | e from elsewhere | q/esc Quit/Close | -styles_hash: 921d63089e120af4 +styles_hash: ab88f0222dcebae diff --git a/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream.snap b/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream.snap index e5a25f5da9..6ea3f49e3a 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'main'. | | Recent commits | - b66a0bf main new-branch origin/main add initial-file | + b66a0bf main new-branch origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u from main | e from elsewhere | q/esc Quit/Close | -styles_hash: 7bc7b0fa946fd8ec +styles_hash: b7b10b9efe3c080 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream_same_as_head.snap b/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream_same_as_head.snap index 0670604a61..8ba58fa976 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream_same_as_head.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_setup_upstream_same_as_head.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch new-branch | | Recent commits | - b66a0bf main new-branch origin/main add initial-file | + b66a0bf main new-branch origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git branch --set-upstream-to new-branch | warning: not setting branch 'new-branch' as its own upstream | -styles_hash: 44bba4e4bc54ab4f +styles_hash: 14b71984e3184671 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_upstream.snap b/src/tests/snapshots/gitu__tests__pull__pull_upstream.snap index 96ef611778..f4429f493c 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_upstream.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_upstream.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - d07f2d3 main origin/main add remote-file | - b66a0bf add initial-file | + d07f2d3 main origin/main Author Name add remote-file | + b66a0bf Author Name add initial-file | | | | @@ -22,4 +22,4 @@ Fast-forward remote-file | 1 + | 1 file changed, 1 insertion(+) | create mode 100644 remote-file | -styles_hash: cf16b967e587e1a4 +styles_hash: 747d002ead5f1253 diff --git a/src/tests/snapshots/gitu__tests__pull__pull_upstream_prompt.snap b/src/tests/snapshots/gitu__tests__pull__pull_upstream_prompt.snap index ebd4bed27b..d882f0cb62 100644 --- a/src/tests/snapshots/gitu__tests__pull__pull_upstream_prompt.snap +++ b/src/tests/snapshots/gitu__tests__pull__pull_upstream_prompt.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set upstream then pull: › █ | -styles_hash: 192f52eb6bc15ece +styles_hash: 610dbe120a30ea1a diff --git a/src/tests/snapshots/gitu__tests__push__force_push.snap b/src/tests/snapshots/gitu__tests__push__force_push.snap index f479bb01ac..c0a1cf0def 100644 --- a/src/tests/snapshots/gitu__tests__push__force_push.snap +++ b/src/tests/snapshots/gitu__tests__push__force_push.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - e7eb2bd main origin/main add new-file | - b66a0bf add initial-file | + e7eb2bd main origin/main Author Name add new-file | + b66a0bf Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() $ git push --force-with-lease origin refs/heads/main:refs/heads/main | To file:// b66a0bf..e7eb2bd main -> main | -styles_hash: 55025d554763c6c6 +styles_hash: f141bd9209be0933 diff --git a/src/tests/snapshots/gitu__tests__push__open_push_menu_after_dash_input.snap b/src/tests/snapshots/gitu__tests__push__open_push_menu_after_dash_input.snap index c6ce1b1241..073d27ee3d 100644 --- a/src/tests/snapshots/gitu__tests__push__open_push_menu_after_dash_input.snap +++ b/src/tests/snapshots/gitu__tests__push__open_push_menu_after_dash_input.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | - e7eb2bd main add new-file | - b66a0bf origin/main add initial-file | + e7eb2bd main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u to origin/main -F Force (--force) | e to elsewhere -f Force with lease (--force-with-lease) | q/esc Quit/Close -h Disable hooks (--no-verify) | -styles_hash: 423a5e46d8d37364 +styles_hash: 5975a577b19db5a6 diff --git a/src/tests/snapshots/gitu__tests__push__push_elsewhere.snap b/src/tests/snapshots/gitu__tests__push__push_elsewhere.snap index 880306fb97..9d16ae5159 100644 --- a/src/tests/snapshots/gitu__tests__push__push_elsewhere.snap +++ b/src/tests/snapshots/gitu__tests__push__push_elsewhere.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git push origin | Everything up-to-date | -styles_hash: b401f8433340269 +styles_hash: 8b549163bb4b5419 diff --git a/src/tests/snapshots/gitu__tests__push__push_elsewhere_prompt.snap b/src/tests/snapshots/gitu__tests__push__push_elsewhere_prompt.snap index a9526691ba..854d79df7b 100644 --- a/src/tests/snapshots/gitu__tests__push__push_elsewhere_prompt.snap +++ b/src/tests/snapshots/gitu__tests__push__push_elsewhere_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Select remote: › █ | -styles_hash: d4bf27d871c90729 +styles_hash: acf61a44ec7643bb diff --git a/src/tests/snapshots/gitu__tests__push__push_menu_existing_push_remote_and_upstream.snap b/src/tests/snapshots/gitu__tests__push__push_menu_existing_push_remote_and_upstream.snap index 8999c239cb..5cb66b5456 100644 --- a/src/tests/snapshots/gitu__tests__push__push_menu_existing_push_remote_and_upstream.snap +++ b/src/tests/snapshots/gitu__tests__push__push_menu_existing_push_remote_and_upstream.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u to origin/main -F Force (--force) | e to elsewhere -f Force with lease (--force-with-lease) | q/esc Quit/Close -h Disable hooks (--no-verify) | -styles_hash: 48bf3603bf81dcbf +styles_hash: 61687a56228e6698 diff --git a/src/tests/snapshots/gitu__tests__push__push_menu_no_branch.snap b/src/tests/snapshots/gitu__tests__push__push_menu_no_branch.snap index 5c54e4055e..0e8f92858d 100644 --- a/src/tests/snapshots/gitu__tests__push__push_menu_no_branch.snap +++ b/src/tests/snapshots/gitu__tests__push__push_menu_no_branch.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌No branch | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Head is not a branch | -styles_hash: 8b09634a27b31084 +styles_hash: 5c633c33ffaf0561 diff --git a/src/tests/snapshots/gitu__tests__push__push_menu_no_remote_or_upstream_set.snap b/src/tests/snapshots/gitu__tests__push__push_menu_no_remote_or_upstream_set.snap index 804af857fb..01e87ac978 100644 --- a/src/tests/snapshots/gitu__tests__push__push_menu_no_remote_or_upstream_set.snap +++ b/src/tests/snapshots/gitu__tests__push__push_menu_no_remote_or_upstream_set.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u upstream, setting that -F Force (--force) | e to elsewhere -f Force with lease (--force-with-lease) | q/esc Quit/Close -h Disable hooks (--no-verify) | -styles_hash: 116e27f679f6d5ff +styles_hash: 5bf4b2badb6906cd diff --git a/src/tests/snapshots/gitu__tests__push__push_push_remote.snap b/src/tests/snapshots/gitu__tests__push__push_push_remote.snap index 7bcbe60442..205fec973e 100644 --- a/src/tests/snapshots/gitu__tests__push__push_push_remote.snap +++ b/src/tests/snapshots/gitu__tests__push__push_push_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git push origin refs/heads/main:refs/heads/main | Everything up-to-date | -styles_hash: 6a5623491f4acf92 +styles_hash: d72d4218c17b88ea diff --git a/src/tests/snapshots/gitu__tests__push__push_push_remote_prompt.snap b/src/tests/snapshots/gitu__tests__push__push_push_remote_prompt.snap index 3d2c0d2622..9a1cfa8cef 100644 --- a/src/tests/snapshots/gitu__tests__push__push_push_remote_prompt.snap +++ b/src/tests/snapshots/gitu__tests__push__push_push_remote_prompt.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 1 commit(s). | | Recent commits | - e7eb2bd main add new-file | - b66a0bf origin/main add initial-file | + e7eb2bd main Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set pushRemote then push: › █ | -styles_hash: 92fb80f8cf77f949 +styles_hash: aaea1f2356fb28a9 diff --git a/src/tests/snapshots/gitu__tests__push__push_setup_push_remote.snap b/src/tests/snapshots/gitu__tests__push__push_setup_push_remote.snap index 8999c239cb..5cb66b5456 100644 --- a/src/tests/snapshots/gitu__tests__push__push_setup_push_remote.snap +++ b/src/tests/snapshots/gitu__tests__push__push_setup_push_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u to origin/main -F Force (--force) | e to elsewhere -f Force with lease (--force-with-lease) | q/esc Quit/Close -h Disable hooks (--no-verify) | -styles_hash: 48bf3603bf81dcbf +styles_hash: 61687a56228e6698 diff --git a/src/tests/snapshots/gitu__tests__push__push_setup_upstream.snap b/src/tests/snapshots/gitu__tests__push__push_setup_upstream.snap index f0f52b2954..c31873d7ce 100644 --- a/src/tests/snapshots/gitu__tests__push__push_setup_upstream.snap +++ b/src/tests/snapshots/gitu__tests__push__push_setup_upstream.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'main'. | | Recent commits | - e7eb2bd main new-branch add new-file | - b66a0bf origin/main add initial-file | + e7eb2bd main new-branch Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() u to main -F Force (--force) | e to elsewhere -f Force with lease (--force-with-lease) | q/esc Quit/Close -h Disable hooks (--no-verify) | -styles_hash: c595ed9845173179 +styles_hash: 5fd52f932ae0c27 diff --git a/src/tests/snapshots/gitu__tests__push__push_setup_upstream_same_as_head.snap b/src/tests/snapshots/gitu__tests__push__push_setup_upstream_same_as_head.snap index f5a43dc7b6..b2d6f69cb5 100644 --- a/src/tests/snapshots/gitu__tests__push__push_setup_upstream_same_as_head.snap +++ b/src/tests/snapshots/gitu__tests__push__push_setup_upstream_same_as_head.snap @@ -5,8 +5,8 @@ expression: ctx.redact_buffer() ▌On branch new-branch | | Recent commits | - e7eb2bd new-branch add new-file | - b66a0bf main origin/main add initial-file | + e7eb2bd new-branch Author Name add new-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git branch --set-upstream-to new-branch | warning: not setting branch 'new-branch' as its own upstream | -styles_hash: d888c8e5e79603b4 +styles_hash: 51c68c91a970c9ae diff --git a/src/tests/snapshots/gitu__tests__push__push_upstream.snap b/src/tests/snapshots/gitu__tests__push__push_upstream.snap index 33c19bda59..8d439d1bfd 100644 --- a/src/tests/snapshots/gitu__tests__push__push_upstream.snap +++ b/src/tests/snapshots/gitu__tests__push__push_upstream.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - e7eb2bd main origin/main add new-file | - b66a0bf add initial-file | + e7eb2bd main origin/main Author Name add new-file | + b66a0bf Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() $ git push origin refs/heads/main:refs/heads/main | To file:// b66a0bf..e7eb2bd main -> main | -styles_hash: 7c6cd7afeae2ed31 +styles_hash: 6afee94c95c2d4cd diff --git a/src/tests/snapshots/gitu__tests__push__push_upstream_prompt.snap b/src/tests/snapshots/gitu__tests__push__push_upstream_prompt.snap index 2b8b54ad1e..fcd3889f51 100644 --- a/src/tests/snapshots/gitu__tests__push__push_upstream_prompt.snap +++ b/src/tests/snapshots/gitu__tests__push__push_upstream_prompt.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Set upstream then push: › █ | -styles_hash: 192f52eb6bc15ece +styles_hash: 610dbe120a30ea1a diff --git a/src/tests/snapshots/gitu__tests__quit__confirm_quit.snap b/src/tests/snapshots/gitu__tests__quit__confirm_quit.snap index ab37e51ce0..0d71861f13 100644 --- a/src/tests/snapshots/gitu__tests__quit__confirm_quit.snap +++ b/src/tests/snapshots/gitu__tests__quit__confirm_quit.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__quit__confirm_quit_prompt.snap b/src/tests/snapshots/gitu__tests__quit__confirm_quit_prompt.snap index ec48a9c1f5..66d0e25d64 100644 --- a/src/tests/snapshots/gitu__tests__quit__confirm_quit_prompt.snap +++ b/src/tests/snapshots/gitu__tests__quit__confirm_quit_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Really quit? (y or n) › █ | -styles_hash: 635af03980970fcf +styles_hash: 78d579cd60bdbcc6 diff --git a/src/tests/snapshots/gitu__tests__quit__quit.snap b/src/tests/snapshots/gitu__tests__quit__quit.snap index ab37e51ce0..0d71861f13 100644 --- a/src/tests/snapshots/gitu__tests__quit__quit.snap +++ b/src/tests/snapshots/gitu__tests__quit__quit.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__quit__quit_from_menu.snap b/src/tests/snapshots/gitu__tests__quit__quit_from_menu.snap index ab37e51ce0..0d71861f13 100644 --- a/src/tests/snapshots/gitu__tests__quit__quit_from_menu.snap +++ b/src/tests/snapshots/gitu__tests__quit__quit_from_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere.snap b/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere.snap index 3f386267b7..783c7130c8 100644 --- a/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere.snap +++ b/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere.snap @@ -5,8 +5,8 @@ expression: ctx.redact_buffer() ▌On branch other-branch | | Recent commits | - 46c81ca main other-branch add new-file | - b66a0bf origin/main add initial-file | + 46c81ca main other-branch Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git rebase --autostash main | Successfully rebased and updated refs/heads/other-branch. | -styles_hash: e4b2d1eeab466a0a +styles_hash: 58895ab25242e548 diff --git a/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere_prompt.snap b/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere_prompt.snap index e689b0189f..87761b312b 100644 --- a/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere_prompt.snap +++ b/src/tests/snapshots/gitu__tests__rebase__rebase_elsewhere_prompt.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch other-branch | | Recent commits | - b66a0bf other-branch origin/main add initial-file | + b66a0bf other-branch origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Rebase onto: › █ | -styles_hash: 53f8a523dd3a4d8a +styles_hash: c286eddd83273a4a diff --git a/src/tests/snapshots/gitu__tests__rebase__rebase_menu.snap b/src/tests/snapshots/gitu__tests__rebase__rebase_menu.snap index beb539ba93..6d0ffe7e5a 100644 --- a/src/tests/snapshots/gitu__tests__rebase__rebase_menu.snap +++ b/src/tests/snapshots/gitu__tests__rebase__rebase_menu.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch other-branch | | Recent commits | - b66a0bf other-branch origin/main add initial-file | + b66a0bf other-branch origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() -k Keep empty commits (--keep-empty) | -h Disable hooks (--no-verify) | -p Preserve merges (--preserve-merges) | -styles_hash: c2a795da9f9636c1 +styles_hash: f0afa6a576227118 diff --git a/src/tests/snapshots/gitu__tests__rebase_conflict.snap b/src/tests/snapshots/gitu__tests__rebase_conflict.snap index 63ae632b76..bd43dfa783 100644 --- a/src/tests/snapshots/gitu__tests__rebase_conflict.snap +++ b/src/tests/snapshots/gitu__tests__rebase_conflict.snap @@ -11,9 +11,9 @@ expression: ctx.redact_buffer() unmerged new-file… | | Recent commits | - ed5ed59 main modify new-file | - 46c81ca add new-file | - b66a0bf origin/main add initial-file | + ed5ed59 main Author Name modify new-file | + 46c81ca Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: c444654cc76064bb +styles_hash: a1a803ac56a966a diff --git a/src/tests/snapshots/gitu__tests__recent_commits_with_limit.snap b/src/tests/snapshots/gitu__tests__recent_commits_with_limit.snap index 8b4bf0f4a4..87afc071c2 100644 --- a/src/tests/snapshots/gitu__tests__recent_commits_with_limit.snap +++ b/src/tests/snapshots/gitu__tests__recent_commits_with_limit.snap @@ -6,8 +6,8 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 3 commit(s). | | Recent commits | - 421fbe4 main add thirdfile | - 0c2c6c3 add secondfile | + 421fbe4 main Author Name add thirdfile | + 0c2c6c3 Author Name add secondfile | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 4ff6b6bda1dfee35 +styles_hash: 190fca13154b8ba4 diff --git a/src/tests/snapshots/gitu__tests__remote__add_remote.snap b/src/tests/snapshots/gitu__tests__remote__add_remote.snap index 2b6abaf578..6e8b0eded4 100644 --- a/src/tests/snapshots/gitu__tests__remote__add_remote.snap +++ b/src/tests/snapshots/gitu__tests__remote__add_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git remote add test localhost | -styles_hash: e5be2cc8ca3f42c +styles_hash: 639c0dc89cc54f5a diff --git a/src/tests/snapshots/gitu__tests__remote__add_remote_name_prompt.snap b/src/tests/snapshots/gitu__tests__remote__add_remote_name_prompt.snap index bbab91252c..2dace9b4dd 100644 --- a/src/tests/snapshots/gitu__tests__remote__add_remote_name_prompt.snap +++ b/src/tests/snapshots/gitu__tests__remote__add_remote_name_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Remote name: › █ | -styles_hash: 72b62dcf583033f7 +styles_hash: c23407c03221d549 diff --git a/src/tests/snapshots/gitu__tests__remote__add_remote_url_prompt.snap b/src/tests/snapshots/gitu__tests__remote__add_remote_url_prompt.snap index 27ef92d280..0ec83a2dbe 100644 --- a/src/tests/snapshots/gitu__tests__remote__add_remote_url_prompt.snap +++ b/src/tests/snapshots/gitu__tests__remote__add_remote_url_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Remote url: › █ | -styles_hash: 533c0c32916d0d32 +styles_hash: 90407e65c5eb60d7 diff --git a/src/tests/snapshots/gitu__tests__remote__remote_menu.snap b/src/tests/snapshots/gitu__tests__remote__remote_menu.snap index 2c30382588..992413053d 100644 --- a/src/tests/snapshots/gitu__tests__remote__remote_menu.snap +++ b/src/tests/snapshots/gitu__tests__remote__remote_menu.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() K remove remote | r rename remote | q/esc Quit/Close | -styles_hash: f68bba68cc2d8ad6 +styles_hash: f10240489a820777 diff --git a/src/tests/snapshots/gitu__tests__remote__remove_remote.snap b/src/tests/snapshots/gitu__tests__remote__remove_remote.snap index 98450544ef..16d04692d7 100644 --- a/src/tests/snapshots/gitu__tests__remote__remove_remote.snap +++ b/src/tests/snapshots/gitu__tests__remote__remove_remote.snap @@ -5,7 +5,7 @@ expression: ctx.redact_buffer() ▌On branch main | | Recent commits | - b66a0bf main add initial-file | + b66a0bf main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git remote remove origin | -styles_hash: 292952155cdc697b +styles_hash: 612a94c51be09dee diff --git a/src/tests/snapshots/gitu__tests__remote__rename_remote.snap b/src/tests/snapshots/gitu__tests__remote__rename_remote.snap index 54a1561187..cb97e2e9ae 100644 --- a/src/tests/snapshots/gitu__tests__remote__rename_remote.snap +++ b/src/tests/snapshots/gitu__tests__remote__rename_remote.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin2/main'. | | Recent commits | - b66a0bf main origin2/main add initial-file | + b66a0bf main origin2/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git remote rename origin origin2 | -styles_hash: a39db450fcdce2da +styles_hash: 2902ecb1848a4b1b diff --git a/src/tests/snapshots/gitu__tests__remote__rename_remote_name_prompt.snap b/src/tests/snapshots/gitu__tests__remote__rename_remote_name_prompt.snap index 1c8ffe5a25..5f0d4f72c0 100644 --- a/src/tests/snapshots/gitu__tests__remote__rename_remote_name_prompt.snap +++ b/src/tests/snapshots/gitu__tests__remote__rename_remote_name_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Rename remote: › █ | -styles_hash: d4bf27d871c90729 +styles_hash: acf61a44ec7643bb diff --git a/src/tests/snapshots/gitu__tests__remote__rename_remote_new_name_prompt.snap b/src/tests/snapshots/gitu__tests__remote__rename_remote_new_name_prompt.snap index 0f9593b52f..787c9e5014 100644 --- a/src/tests/snapshots/gitu__tests__remote__rename_remote_new_name_prompt.snap +++ b/src/tests/snapshots/gitu__tests__remote__rename_remote_new_name_prompt.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Rename to: › █ | -styles_hash: e71a307199e38aa3 +styles_hash: 732ea7e8be020de diff --git a/src/tests/snapshots/gitu__tests__reset__reset_hard.snap b/src/tests/snapshots/gitu__tests__reset__reset_hard.snap index 8c9687079b..8caed3254f 100644 --- a/src/tests/snapshots/gitu__tests__reset__reset_hard.snap +++ b/src/tests/snapshots/gitu__tests__reset__reset_hard.snap @@ -6,7 +6,7 @@ expression: ctx.redact_buffer() ▌Your branch is up to date with 'origin/main'. | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: f47a6512af0aca26 +styles_hash: c91cbb8d1e081d82 diff --git a/src/tests/snapshots/gitu__tests__reset__reset_menu.snap b/src/tests/snapshots/gitu__tests__reset__reset_menu.snap index cb43969cd9..37a4596926 100644 --- a/src/tests/snapshots/gitu__tests__reset__reset_menu.snap +++ b/src/tests/snapshots/gitu__tests__reset__reset_menu.snap @@ -2,8 +2,8 @@ source: src/tests/reset.rs expression: ctx.redact_buffer() --- - ba1a85d main add unwanted-file | -▌b66a0bf origin/main add initial-file | + ba1a85d main Author Name add unwanted-file | +▌b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() m mixed | h hard | q/esc Quit/Close | -styles_hash: f5d50e0a53ae7611 +styles_hash: 2d383eb6622b059f diff --git a/src/tests/snapshots/gitu__tests__reset__reset_mixed.snap b/src/tests/snapshots/gitu__tests__reset__reset_mixed.snap index a8a44d6470..be5be00c5e 100644 --- a/src/tests/snapshots/gitu__tests__reset__reset_mixed.snap +++ b/src/tests/snapshots/gitu__tests__reset__reset_mixed.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() unwanted-file | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 4738e02f19882d7d +styles_hash: cb69cc2d63a846a2 diff --git a/src/tests/snapshots/gitu__tests__reset__reset_soft.snap b/src/tests/snapshots/gitu__tests__reset__reset_soft.snap index ecafabdce9..9c65be8adc 100644 --- a/src/tests/snapshots/gitu__tests__reset__reset_soft.snap +++ b/src/tests/snapshots/gitu__tests__reset__reset_soft.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() added unwanted-file | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: fef12cfe8789d4e2 +styles_hash: b5b7d099b86a078b diff --git a/src/tests/snapshots/gitu__tests__reset__reset_soft_prompt.snap b/src/tests/snapshots/gitu__tests__reset__reset_soft_prompt.snap index 2ffb71f493..b8ac527ebf 100644 --- a/src/tests/snapshots/gitu__tests__reset__reset_soft_prompt.snap +++ b/src/tests/snapshots/gitu__tests__reset__reset_soft_prompt.snap @@ -2,8 +2,8 @@ source: src/tests/reset.rs expression: ctx.redact_buffer() --- - ba1a85d main add unwanted-file | -▌b66a0bf origin/main add initial-file | + ba1a85d main Author Name add unwanted-file | +▌b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Soft reset to (default b66a0bf82020d6a386e94d0fceedec1f817d20c7): › q█ | -styles_hash: d47848d48dafbf60 +styles_hash: 1782e86a4a197f3a diff --git a/src/tests/snapshots/gitu__tests__revert_abort.snap b/src/tests/snapshots/gitu__tests__revert_abort.snap index 57fc9a5110..fc4d4478a9 100644 --- a/src/tests/snapshots/gitu__tests__revert_abort.snap +++ b/src/tests/snapshots/gitu__tests__revert_abort.snap @@ -6,9 +6,9 @@ expression: ctx.redact_buffer() ▌Your branch is ahead of 'origin/main' by 2 commit(s). | | Recent commits | - 7294ba4 main modify new-file | - 57409cb add new-file | - b66a0bf origin/main add initial-file | + 7294ba4 main Author Name modify new-file | + 57409cb Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git revert --abort | -styles_hash: 8d5b31c704dbb728 +styles_hash: 544f7cf77a9fb63e diff --git a/src/tests/snapshots/gitu__tests__revert_commit.snap b/src/tests/snapshots/gitu__tests__revert_commit.snap index e316f3b71c..694025d274 100644 --- a/src/tests/snapshots/gitu__tests__revert_commit.snap +++ b/src/tests/snapshots/gitu__tests__revert_commit.snap @@ -2,8 +2,8 @@ source: src/tests/mod.rs expression: ctx.redact_buffer() --- -▌6324471 main Revert "add initial-file" | - b66a0bf origin/main add initial-file | +▌6324471 main Author Name Revert "add initial-file" | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git revert --edit --no-edit b66a0bf82020d6a386e94d0fceedec1f817d20c7 | -styles_hash: 6dd7ad347925516e +styles_hash: 373d59c2a072c98e diff --git a/src/tests/snapshots/gitu__tests__revert_commit_prompt.snap b/src/tests/snapshots/gitu__tests__revert_commit_prompt.snap index 0b236c9536..18e7bf89d4 100644 --- a/src/tests/snapshots/gitu__tests__revert_commit_prompt.snap +++ b/src/tests/snapshots/gitu__tests__revert_commit_prompt.snap @@ -2,7 +2,7 @@ source: src/tests/mod.rs expression: ctx.redact_buffer() --- -▌b66a0bf main origin/main add initial-file | +▌b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Revert commit (default b66a0bf82020d6a386e94d0fceedec1f817d20c7): › █ | -styles_hash: eed2121b6c3c5b0f +styles_hash: dc64b486323874e7 diff --git a/src/tests/snapshots/gitu__tests__revert_conflict.snap b/src/tests/snapshots/gitu__tests__revert_conflict.snap index 119b9cba60..28347de0ea 100644 --- a/src/tests/snapshots/gitu__tests__revert_conflict.snap +++ b/src/tests/snapshots/gitu__tests__revert_conflict.snap @@ -11,9 +11,9 @@ expression: ctx.redact_buffer() unmerged new-file… | | Recent commits | - 7294ba4 main modify new-file | - 57409cb add new-file | - b66a0bf origin/main add initial-file | + 7294ba4 main Author Name modify new-file | + 57409cb Author Name add new-file | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: ce1bcac7e4255e31 +styles_hash: edfc6b326da24b05 diff --git a/src/tests/snapshots/gitu__tests__revert_menu.snap b/src/tests/snapshots/gitu__tests__revert_menu.snap index 60a36e955c..279da04a65 100644 --- a/src/tests/snapshots/gitu__tests__revert_menu.snap +++ b/src/tests/snapshots/gitu__tests__revert_menu.snap @@ -2,7 +2,7 @@ source: src/tests/mod.rs expression: ctx.redact_buffer() --- -▌b66a0bf main origin/main add initial-file | +▌b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() c Continue -E Don't edit commit message (--no-edit) | V Revert commit(s) -s Add Signed-off-by lines (--signoff) | q/esc Quit/Close | -styles_hash: 64dda6a1259ae722 +styles_hash: 3a014e4b8a582f52 diff --git a/src/tests/snapshots/gitu__tests__stage__stage_all_unstaged.snap b/src/tests/snapshots/gitu__tests__stage__stage_all_unstaged.snap index 9109d8eba0..7f59651b3e 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_all_unstaged.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_all_unstaged.snap @@ -10,9 +10,9 @@ expression: ctx.redact_buffer() ▌modified secondfile… | | Recent commits | - 0c2c6c3 main add secondfile | - 223428c add firstfile | - b66a0bf origin/main add initial-file | + 0c2c6c3 main Author Name add secondfile | + 223428c Author Name add firstfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git add -u . | -styles_hash: a063500e9afe37d6 +styles_hash: c9c820623a83d13b diff --git a/src/tests/snapshots/gitu__tests__stage__stage_all_untracked.snap b/src/tests/snapshots/gitu__tests__stage__stage_all_untracked.snap index 7f76cf0f52..71c9985b6f 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_all_untracked.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_all_untracked.snap @@ -10,7 +10,7 @@ expression: ctx.redact_buffer() ▌added file-b | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git add file-a file-b | -styles_hash: 93f1d2dc4e2c68b6 +styles_hash: e5d8ac77f0dcda46 diff --git a/src/tests/snapshots/gitu__tests__stage__stage_changes_crlf.snap b/src/tests/snapshots/gitu__tests__stage__stage_changes_crlf.snap index b61b5c0078..67c5a6b04c 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_changes_crlf.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_changes_crlf.snap @@ -13,8 +13,8 @@ expression: ctx.redact_buffer() ▌ testtest | | Recent commits | - bbe772c main add testfile | - b66a0bf origin/main add initial-file | + bbe772c main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 6e23db6ecca0d933 +styles_hash: 39f19048c63a1f5b diff --git a/src/tests/snapshots/gitu__tests__stage__stage_deleted_executable_file.snap b/src/tests/snapshots/gitu__tests__stage__stage_deleted_executable_file.snap index dbc274feb7..a3a685014c 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_deleted_executable_file.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_deleted_executable_file.snap @@ -9,9 +9,9 @@ expression: ctx.redact_buffer() ▌deleted script.sh… | | Recent commits | - af83421 main add executable script | - 289f1e5 add script.sh | - b66a0bf origin/main add initial-file | + af83421 main Author Name add executable script | + 289f1e5 Author Name add script.sh | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git add script.sh | -styles_hash: 904386f2bd8f8286 +styles_hash: efb4ad05a0ccf44c diff --git a/src/tests/snapshots/gitu__tests__stage__stage_deleted_file.snap b/src/tests/snapshots/gitu__tests__stage__stage_deleted_file.snap index 22101f2618..e77a552f4b 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_deleted_file.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_deleted_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌deleted to-delete… | | Recent commits | - 0341425 main add to-delete | - b66a0bf origin/main add initial-file | + 0341425 main Author Name add to-delete | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git add to-delete | -styles_hash: 86c2e1d85f798b75 +styles_hash: fade29e0c9a913d4 diff --git a/src/tests/snapshots/gitu__tests__stage__stage_removed_line.snap b/src/tests/snapshots/gitu__tests__stage__stage_removed_line.snap index f7f3948199..ec13fe3ac9 100644 --- a/src/tests/snapshots/gitu__tests__stage__stage_removed_line.snap +++ b/src/tests/snapshots/gitu__tests__stage__stage_removed_line.snap @@ -19,7 +19,7 @@ expression: ctx.redact_buffer() testtest | | Recent commits | - 223428c main add firstfile | + 223428c main Author Name add firstfile | ────────────────────────────────────────────────────────────────────────────────| $ git apply --cached --recount | -styles_hash: 3d0b28ed50247a08 +styles_hash: 77328d16e6c43e34 diff --git a/src/tests/snapshots/gitu__tests__stage__staged_file.snap b/src/tests/snapshots/gitu__tests__stage__staged_file.snap index bfdc7b1d3a..d5e20f4f86 100644 --- a/src/tests/snapshots/gitu__tests__stage__staged_file.snap +++ b/src/tests/snapshots/gitu__tests__stage__staged_file.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() added new-file… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: e95ba86e6653e5f8 +styles_hash: 2f095b7dcaa5e433 diff --git a/src/tests/snapshots/gitu__tests__stage_last_hunk_of_first_delta.snap b/src/tests/snapshots/gitu__tests__stage_last_hunk_of_first_delta.snap index 77c2e697eb..4b18696551 100644 --- a/src/tests/snapshots/gitu__tests__stage_last_hunk_of_first_delta.snap +++ b/src/tests/snapshots/gitu__tests__stage_last_hunk_of_first_delta.snap @@ -15,11 +15,11 @@ expression: ctx.redact_buffer() blahonga | | Recent commits | - e45938a main add file-two | - b3cf8e8 add file-one | - b66a0bf origin/main add initial-file | + e45938a main Author Name add file-two | + b3cf8e8 Author Name add file-one | + b66a0bf origin/main Author Name add initial-file | | | ────────────────────────────────────────────────────────────────────────────────| $ git apply --cached | -styles_hash: ec215853d0f68a99 +styles_hash: 9df6ef20bfc8fd33 diff --git a/src/tests/snapshots/gitu__tests__stash__stash.snap b/src/tests/snapshots/gitu__tests__stash__stash.snap index 1afdc768ff..bdf3b9eece 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() stash@0 On main: test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash push --include-untracked --message test | Saved working directory and index state On main: test | -styles_hash: 5ce63d321da655e4 +styles_hash: 19555eda2dbe169b diff --git a/src/tests/snapshots/gitu__tests__stash__stash_apply.snap b/src/tests/snapshots/gitu__tests__stash__stash_apply.snap index 11cc5982a6..d8cfbc6e17 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_apply.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_apply.snap @@ -15,11 +15,11 @@ expression: ctx.redact_buffer() stash@1 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | | ────────────────────────────────────────────────────────────────────────────────| $ git stash apply -q 1 | -styles_hash: 6ff816bedee07b43 +styles_hash: bcb1740ea3ca3452 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_apply_default.snap b/src/tests/snapshots/gitu__tests__stash__stash_apply_default.snap index 775c88d107..4a9ab51640 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_apply_default.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_apply_default.snap @@ -13,7 +13,7 @@ expression: ctx.redact_buffer() stash@1 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash apply -q 0 | Already up to date. | -styles_hash: 9d03a36fae8a1392 +styles_hash: b11321a132fd69d5 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_apply_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_apply_prompt.snap index 24113bac7b..be2060e719 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_apply_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_apply_prompt.snap @@ -10,7 +10,7 @@ expression: ctx.redact_buffer() stash@1 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Apply stash (default 0): › █ | -styles_hash: 216e8fc2f72a82c7 +styles_hash: 8552fa1b0f33e4e7 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_drop.snap b/src/tests/snapshots/gitu__tests__stash__stash_drop.snap index c5353e428a..36ff43c321 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_drop.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_drop.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() stash@0 On main: file-two | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash drop 1 | Dropped refs/stash@{1} (6e4ee08a012b0675b1f27465f158930aa1088b7a) | -styles_hash: 94c54afa40f5600a +styles_hash: 5004ce10fa8647a0 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_drop_default.snap b/src/tests/snapshots/gitu__tests__stash__stash_drop_default.snap index 271d4cdf29..b6e7a96689 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_drop_default.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_drop_default.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() stash@0 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash drop 0 | Dropped refs/stash@{0} (866ae6e6fb018bbc32c37e658e097d95dceee8c0) | -styles_hash: 94c54afa40f5600a +styles_hash: 5004ce10fa8647a0 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_drop_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_drop_prompt.snap index 31ef177bff..32bda596d9 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_drop_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_drop_prompt.snap @@ -10,7 +10,7 @@ expression: ctx.redact_buffer() stash@1 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Drop stash (default 0): › █ | -styles_hash: 6610d51b9ce82971 +styles_hash: bbcee5246e842aca diff --git a/src/tests/snapshots/gitu__tests__stash__stash_index.snap b/src/tests/snapshots/gitu__tests__stash__stash_index.snap index 8409d1ef25..9176a11caa 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_index.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_index.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() stash@0 On main: test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash push --staged --message test | Saved working directory and index state On main: test | -styles_hash: 5fee4e9a17e73edf +styles_hash: 218830b005b2648 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_index_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_index_prompt.snap index 275932697b..8a8b9bfc13 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_index_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_index_prompt.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() added file-one… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Stash message: › █ | -styles_hash: 84962ae13e37fe04 +styles_hash: 887ec01fb4635f0d diff --git a/src/tests/snapshots/gitu__tests__stash__stash_keeping_index.snap b/src/tests/snapshots/gitu__tests__stash__stash_keeping_index.snap index 443fa518c1..49fafe447f 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_keeping_index.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_keeping_index.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() stash@0 On main: test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash push --keep-index --include-untracked --message test | Saved working directory and index state On main: test | -styles_hash: 306a2e516da70fe5 +styles_hash: e6a5d75330a492dc diff --git a/src/tests/snapshots/gitu__tests__stash__stash_keeping_index_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_keeping_index_prompt.snap index 275932697b..8a8b9bfc13 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_keeping_index_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_keeping_index_prompt.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() added file-one… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Stash message: › █ | -styles_hash: 84962ae13e37fe04 +styles_hash: 887ec01fb4635f0d diff --git a/src/tests/snapshots/gitu__tests__stash__stash_pop.snap b/src/tests/snapshots/gitu__tests__stash__stash_pop.snap index 84348b4b60..5186241681 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_pop.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_pop.snap @@ -14,7 +14,7 @@ expression: ctx.redact_buffer() stash@0 On main: file-two | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git stash pop -q 1 | -styles_hash: 2fddcabe20afecfe +styles_hash: 89aa3d007f533881 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_pop_default.snap b/src/tests/snapshots/gitu__tests__stash__stash_pop_default.snap index 24b0094b38..4aafaf2609 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_pop_default.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_pop_default.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() stash@0 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash pop -q 0 | Already up to date. | -styles_hash: d0f94aafefcbeb56 +styles_hash: d9badbfc65926cdc diff --git a/src/tests/snapshots/gitu__tests__stash__stash_pop_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_pop_prompt.snap index 60bbdac495..d6a5c3a2b6 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_pop_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_pop_prompt.snap @@ -10,7 +10,7 @@ expression: ctx.redact_buffer() stash@1 On main: file-one | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Pop stash (default 0): › █ | -styles_hash: f9d1a1a4d6ebc785 +styles_hash: 70a8dda4e20cf09 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_prompt.snap index 275932697b..8a8b9bfc13 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_prompt.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() added file-one… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Stash message: › █ | -styles_hash: 84962ae13e37fe04 +styles_hash: 887ec01fb4635f0d diff --git a/src/tests/snapshots/gitu__tests__stash__stash_working_tree.snap b/src/tests/snapshots/gitu__tests__stash__stash_working_tree.snap index 1f5219c370..cf578967b1 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_working_tree.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_working_tree.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() stash@0 On main: test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ Saved working directory and index state WIP on main: b66a0bf add initial-file $ git stash push --include-untracked --message test | Saved working directory and index state On main: test | $ git stash pop -q 1 | -styles_hash: e26b4618f23a734 +styles_hash: e9371ffef77c6d11 diff --git a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_prompt.snap b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_prompt.snap index 275932697b..8a8b9bfc13 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_prompt.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_prompt.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() added file-one… | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ? Stash message: › █ | -styles_hash: 84962ae13e37fe04 +styles_hash: 887ec01fb4635f0d diff --git a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_everything_is_staged.snap b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_everything_is_staged.snap index 0a884ba3f1..329c31a170 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_everything_is_staged.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_everything_is_staged.snap @@ -12,7 +12,7 @@ expression: ctx.redact_buffer() ▌+blahonga | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| ! Cannot stash: working tree is empty | -styles_hash: 540759bc87855080 +styles_hash: 5234bc4e55aa1f8e diff --git a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_nothing_is_staged.snap b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_nothing_is_staged.snap index 1afdc768ff..bdf3b9eece 100644 --- a/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_nothing_is_staged.snap +++ b/src/tests/snapshots/gitu__tests__stash__stash_working_tree_when_nothing_is_staged.snap @@ -9,7 +9,7 @@ expression: ctx.redact_buffer() stash@0 On main: test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() ────────────────────────────────────────────────────────────────────────────────| $ git stash push --include-untracked --message test | Saved working directory and index state On main: test | -styles_hash: 5ce63d321da655e4 +styles_hash: 19555eda2dbe169b diff --git a/src/tests/snapshots/gitu__tests__stash_list_with_limit.snap b/src/tests/snapshots/gitu__tests__stash_list_with_limit.snap index f39470ea1b..efa80711a3 100644 --- a/src/tests/snapshots/gitu__tests__stash_list_with_limit.snap +++ b/src/tests/snapshots/gitu__tests__stash_list_with_limit.snap @@ -10,7 +10,7 @@ expression: ctx.redact_buffer() stash@1 On main: secondstash | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: d4182dc7cc4ac7f6 +styles_hash: 303449078456e008 diff --git a/src/tests/snapshots/gitu__tests__syntax_highlighted.snap b/src/tests/snapshots/gitu__tests__syntax_highlighted.snap index c6cb40f78a..337776e729 100644 --- a/src/tests/snapshots/gitu__tests__syntax_highlighted.snap +++ b/src/tests/snapshots/gitu__tests__syntax_highlighted.snap @@ -14,12 +14,12 @@ expression: ctx.redact_buffer() ▌ } | | Recent commits | - 5d25264 main add syntax-highlighted.rs | - b66a0bf origin/main add initial-file | + 5d25264 main Author Name add syntax-highlighted.rs | + b66a0bf origin/main Author Name add initial-file | | | | | | | -styles_hash: 1b0c71337d9d805a +styles_hash: 126ba98d3c9daec6 diff --git a/src/tests/snapshots/gitu__tests__tab_diff.snap b/src/tests/snapshots/gitu__tests__tab_diff.snap index c6ae6c2b13..e6e0da571a 100644 --- a/src/tests/snapshots/gitu__tests__tab_diff.snap +++ b/src/tests/snapshots/gitu__tests__tab_diff.snap @@ -12,8 +12,8 @@ expression: ctx.redact_buffer() + this has a tab prefixed | | Recent commits | - 0295453 main add tab.txt | - b66a0bf origin/main add initial-file | + 0295453 main Author Name add tab.txt | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 4db1a6e61728c6f7 +styles_hash: 7ccfcb4642caf284 diff --git a/src/tests/snapshots/gitu__tests__unstage__unstage_added_line.snap b/src/tests/snapshots/gitu__tests__unstage__unstage_added_line.snap index 83c404649a..f86b84186b 100644 --- a/src/tests/snapshots/gitu__tests__unstage__unstage_added_line.snap +++ b/src/tests/snapshots/gitu__tests__unstage__unstage_added_line.snap @@ -19,7 +19,7 @@ expression: ctx.redact_buffer() +blrergh | | Recent commits | - 223428c main add firstfile | + 223428c main Author Name add firstfile | ────────────────────────────────────────────────────────────────────────────────| $ git apply --cached --reverse --recount | -styles_hash: da335a72680b4013 +styles_hash: d3b7e4838e32b4ae diff --git a/src/tests/snapshots/gitu__tests__unstage__unstage_all_staged.snap b/src/tests/snapshots/gitu__tests__unstage__unstage_all_staged.snap index 0fc77c1022..67c5834b62 100644 --- a/src/tests/snapshots/gitu__tests__unstage__unstage_all_staged.snap +++ b/src/tests/snapshots/gitu__tests__unstage__unstage_all_staged.snap @@ -11,7 +11,7 @@ expression: ctx.redact_buffer() ▌unaffected | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git reset HEAD -- | -styles_hash: 9c970ab3eaa19c0b +styles_hash: bb0a56b240851d65 diff --git a/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_executable_file.snap b/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_executable_file.snap index 59e7f53f6c..f6e0286af8 100644 --- a/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_executable_file.snap +++ b/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_executable_file.snap @@ -9,9 +9,9 @@ expression: ctx.redact_buffer() ▌deleted script.sh… | | Recent commits | - af83421 main add executable script | - 289f1e5 add script.sh | - b66a0bf origin/main add initial-file | + af83421 main Author Name add executable script | + 289f1e5 Author Name add script.sh | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git restore --staged script.sh | -styles_hash: b62fb270c2647e0a +styles_hash: 267586e25aeae4d5 diff --git a/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_file.snap b/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_file.snap index 271260f54f..587013bfe7 100644 --- a/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_file.snap +++ b/src/tests/snapshots/gitu__tests__unstage__unstage_deleted_file.snap @@ -9,8 +9,8 @@ expression: ctx.redact_buffer() ▌deleted to-delete… | | Recent commits | - 0341425 main add to-delete | - b66a0bf origin/main add initial-file | + 0341425 main Author Name add to-delete | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | ────────────────────────────────────────────────────────────────────────────────| $ git restore --staged to-delete | -styles_hash: c5bc1d29471d4f7b +styles_hash: f8e3410b37b3d41f diff --git a/src/tests/snapshots/gitu__tests__unstaged_changes.snap b/src/tests/snapshots/gitu__tests__unstaged_changes.snap index 82e45f8fb6..edfe3ded12 100644 --- a/src/tests/snapshots/gitu__tests__unstaged_changes.snap +++ b/src/tests/snapshots/gitu__tests__unstaged_changes.snap @@ -13,8 +13,8 @@ expression: ctx.redact_buffer() ▌ testtest | | Recent commits | - cd4d2d1 main add testfile | - b66a0bf origin/main add initial-file | + cd4d2d1 main Author Name add testfile | + b66a0bf origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: 6e23db6ecca0d933 +styles_hash: 39f19048c63a1f5b diff --git a/src/tests/snapshots/gitu__tests__updated_externally.snap b/src/tests/snapshots/gitu__tests__updated_externally.snap index 7a9179b46a..88489ff010 100644 --- a/src/tests/snapshots/gitu__tests__updated_externally.snap +++ b/src/tests/snapshots/gitu__tests__updated_externally.snap @@ -14,7 +14,7 @@ expression: ctx.redact_buffer() +test | | Recent commits | - b66a0bf main origin/main add initial-file | + b66a0bf main origin/main Author Name add initial-file | | | | @@ -22,4 +22,4 @@ expression: ctx.redact_buffer() | | | -styles_hash: d61e94830ad618a5 +styles_hash: d039b0e5e5fa1fa3