gitextract_1za1en4i/ ├── .cargo/ │ └── config.toml ├── .clippy.toml ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── brew.yml │ ├── cd.yml │ ├── ci.yml │ └── nightly.yml ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── FAQ.md ├── KEY_CONFIG.md ├── LICENSE.md ├── Makefile ├── NIGHTLIES.md ├── README.md ├── THEMES.md ├── assets/ │ ├── expandable-commands.drawio │ ├── log-commit-info.drawio │ ├── options.drawio │ └── stashing.drawio ├── asyncgit/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── asyncjob/ │ │ └── mod.rs │ ├── blame.rs │ ├── branches.rs │ ├── cached/ │ │ ├── branchname.rs │ │ └── mod.rs │ ├── commit_files.rs │ ├── diff.rs │ ├── error.rs │ ├── fetch_job.rs │ ├── filter_commits.rs │ ├── lib.rs │ ├── progress.rs │ ├── pull.rs │ ├── push.rs │ ├── push_tags.rs │ ├── remote_progress.rs │ ├── remote_tags.rs │ ├── revlog.rs │ ├── status.rs │ ├── sync/ │ │ ├── blame.rs │ │ ├── branch/ │ │ │ ├── merge_commit.rs │ │ │ ├── merge_ff.rs │ │ │ ├── merge_rebase.rs │ │ │ ├── mod.rs │ │ │ └── rename.rs │ │ ├── commit.rs │ │ ├── commit_details.rs │ │ ├── commit_files.rs │ │ ├── commit_filter.rs │ │ ├── commit_revert.rs │ │ ├── commits_info.rs │ │ ├── config.rs │ │ ├── cred.rs │ │ ├── diff.rs │ │ ├── hooks.rs │ │ ├── hunks.rs │ │ ├── ignore.rs │ │ ├── logwalker.rs │ │ ├── merge.rs │ │ ├── mod.rs │ │ ├── patches.rs │ │ ├── rebase.rs │ │ ├── remotes/ │ │ │ ├── callbacks.rs │ │ │ ├── mod.rs │ │ │ ├── push.rs │ │ │ └── tags.rs │ │ ├── repository.rs │ │ ├── reset.rs │ │ ├── reword.rs │ │ ├── sign.rs │ │ ├── staging/ │ │ │ ├── discard_tracked.rs │ │ │ ├── mod.rs │ │ │ └── stage_tracked.rs │ │ ├── stash.rs │ │ ├── state.rs │ │ ├── status.rs │ │ ├── submodules.rs │ │ ├── tags.rs │ │ ├── tree.rs │ │ └── utils.rs │ ├── tags.rs │ └── treefiles.rs ├── build.rs ├── deny.toml ├── filetreelist/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── error.rs │ ├── filetree.rs │ ├── filetreeitems.rs │ ├── item.rs │ ├── lib.rs │ ├── tree_iter.rs │ └── treeitems_iter.rs ├── git2-hooks/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── error.rs │ ├── hookspath.rs │ └── lib.rs ├── git2-testing/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── lib.rs ├── invalidstring/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── lib.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── scopetime/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── lib.rs ├── src/ │ ├── app.rs │ ├── args.rs │ ├── bug_report.rs │ ├── clipboard.rs │ ├── cmdbar.rs │ ├── components/ │ │ ├── changes.rs │ │ ├── command.rs │ │ ├── commit_details/ │ │ │ ├── compare_details.rs │ │ │ ├── details.rs │ │ │ ├── mod.rs │ │ │ └── style.rs │ │ ├── commitlist.rs │ │ ├── cred.rs │ │ ├── diff.rs │ │ ├── mod.rs │ │ ├── revision_files.rs │ │ ├── status_tree.rs │ │ ├── syntax_text.rs │ │ ├── textinput.rs │ │ └── utils/ │ │ ├── emoji.rs │ │ ├── filetree.rs │ │ ├── logitems.rs │ │ ├── mod.rs │ │ ├── scroll_horizontal.rs │ │ ├── scroll_vertical.rs │ │ └── statustree.rs │ ├── input.rs │ ├── keys/ │ │ ├── key_config.rs │ │ ├── key_list.rs │ │ ├── mod.rs │ │ └── symbols.rs │ ├── main.rs │ ├── notify_mutex.rs │ ├── options.rs │ ├── popup_stack.rs │ ├── popups/ │ │ ├── blame_file.rs │ │ ├── branchlist.rs │ │ ├── checkout_option.rs │ │ ├── commit.rs │ │ ├── compare_commits.rs │ │ ├── confirm.rs │ │ ├── create_branch.rs │ │ ├── create_remote.rs │ │ ├── externaleditor.rs │ │ ├── fetch.rs │ │ ├── file_revlog.rs │ │ ├── fuzzy_find.rs │ │ ├── goto_line.rs │ │ ├── help.rs │ │ ├── inspect_commit.rs │ │ ├── log_search.rs │ │ ├── mod.rs │ │ ├── msg.rs │ │ ├── options.rs │ │ ├── pull.rs │ │ ├── push.rs │ │ ├── push_tags.rs │ │ ├── remotelist.rs │ │ ├── rename_branch.rs │ │ ├── rename_remote.rs │ │ ├── reset.rs │ │ ├── revision_files.rs │ │ ├── stashmsg.rs │ │ ├── submodules.rs │ │ ├── tag_commit.rs │ │ ├── taglist.rs │ │ └── update_remote_url.rs │ ├── queue.rs │ ├── spinner.rs │ ├── string_utils.rs │ ├── strings.rs │ ├── tabs/ │ │ ├── files.rs │ │ ├── mod.rs │ │ ├── revlog.rs │ │ ├── stashing.rs │ │ ├── stashlist.rs │ │ └── status.rs │ ├── ui/ │ │ ├── mod.rs │ │ ├── reflow.rs │ │ ├── scrollbar.rs │ │ ├── scrolllist.rs │ │ ├── stateful_paragraph.rs │ │ ├── style.rs │ │ └── syntax_text.rs │ └── watcher.rs ├── typos.toml ├── vim_style_key_config.ron └── wix/ ├── License.rtf ├── Microsoft_VC142_CRT_x64.msm └── main.wxs