├── .codespellrc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── discussion.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md ├── release.yml └── workflows │ ├── check-required-label.yml │ ├── ci.yml │ ├── close-issues.yml │ ├── codespell.yml │ ├── release.yml │ └── sponsors.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .vscode ├── debugger_config.yml ├── launch.json ├── settings.json └── tasks.json ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VISION.md ├── cmd ├── i18n │ └── main.go └── integration_test │ └── main.go ├── default.nix ├── demo ├── README.md ├── config.yml └── record_demo.sh ├── docs-master ├── Config.md ├── Custom_Command_Keybindings.md ├── Custom_Pagers.md ├── Fixup_Commits.md ├── README.md ├── Range_Select.md ├── Searching.md ├── Stacked_Branches.md ├── Undoing.md ├── dev │ ├── Busy.md │ ├── Codebase_Guide.md │ ├── Demo_Recordings.md │ ├── Find_Base_Commit_For_Fixup_Design.md │ ├── Integration_Tests.md │ ├── Profiling.md │ └── README.md └── keybindings │ ├── Custom_Keybindings.md │ ├── Keybindings_en.md │ ├── Keybindings_ja.md │ ├── Keybindings_ko.md │ ├── Keybindings_nl.md │ ├── Keybindings_pl.md │ ├── Keybindings_pt.md │ ├── Keybindings_ru.md │ ├── Keybindings_zh-CN.md │ └── Keybindings_zh-TW.md ├── docs ├── Config.md ├── Custom_Command_Keybindings.md ├── Custom_Pagers.md ├── Fixup_Commits.md ├── README.md ├── Range_Select.md ├── Searching.md ├── Stacked_Branches.md ├── Undoing.md ├── dev │ ├── Busy.md │ ├── Codebase_Guide.md │ ├── Demo_Recordings.md │ ├── Find_Base_Commit_For_Fixup_Design.md │ ├── Integration_Tests.md │ ├── Profiling.md │ └── README.md └── keybindings │ ├── Custom_Keybindings.md │ ├── Keybindings_en.md │ ├── Keybindings_ja.md │ ├── Keybindings_ko.md │ ├── Keybindings_nl.md │ ├── Keybindings_pl.md │ ├── Keybindings_pt.md │ ├── Keybindings_ru.md │ ├── Keybindings_zh-CN.md │ └── Keybindings_zh-TW.md ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── main.go ├── pkg ├── app │ ├── app.go │ ├── daemon │ │ ├── daemon.go │ │ └── rebase.go │ ├── entry_point.go │ ├── errors.go │ └── types │ │ └── types.go ├── cheatsheet │ ├── generate.go │ ├── generate_test.go │ └── generator.go ├── commands │ ├── git.go │ ├── git_cmd_obj_builder.go │ ├── git_cmd_obj_runner.go │ ├── git_commands │ │ ├── bisect.go │ │ ├── bisect_info.go │ │ ├── blame.go │ │ ├── branch.go │ │ ├── branch_loader.go │ │ ├── branch_loader_test.go │ │ ├── branch_test.go │ │ ├── commit.go │ │ ├── commit_file_loader.go │ │ ├── commit_file_loader_test.go │ │ ├── commit_loader.go │ │ ├── commit_loader_test.go │ │ ├── commit_loading_shared.go │ │ ├── commit_test.go │ │ ├── common.go │ │ ├── config.go │ │ ├── custom.go │ │ ├── deps_test.go │ │ ├── diff.go │ │ ├── file.go │ │ ├── file_loader.go │ │ ├── file_loader_test.go │ │ ├── file_test.go │ │ ├── flow.go │ │ ├── flow_test.go │ │ ├── git_command_builder.go │ │ ├── git_command_builder_test.go │ │ ├── main_branches.go │ │ ├── patch.go │ │ ├── rebase.go │ │ ├── rebase_test.go │ │ ├── reflog_commit_loader.go │ │ ├── reflog_commit_loader_test.go │ │ ├── remote.go │ │ ├── remote_loader.go │ │ ├── repo_paths.go │ │ ├── repo_paths_test.go │ │ ├── stash.go │ │ ├── stash_loader.go │ │ ├── stash_loader_test.go │ │ ├── stash_test.go │ │ ├── status.go │ │ ├── submodule.go │ │ ├── sync.go │ │ ├── sync_test.go │ │ ├── tag.go │ │ ├── tag_loader.go │ │ ├── tag_loader_test.go │ │ ├── version.go │ │ ├── version_test.go │ │ ├── working_tree.go │ │ ├── working_tree_test.go │ │ ├── worktree.go │ │ ├── worktree_loader.go │ │ └── worktree_loader_test.go │ ├── git_config │ │ ├── cached_git_config.go │ │ ├── cached_git_config_test.go │ │ ├── fake_git_config.go │ │ └── get_key.go │ ├── hosting_service │ │ ├── definitions.go │ │ ├── hosting_service.go │ │ └── hosting_service_test.go │ ├── models │ │ ├── author.go │ │ ├── branch.go │ │ ├── commit.go │ │ ├── commit_file.go │ │ ├── file.go │ │ ├── ref.go │ │ ├── remote.go │ │ ├── remote_branch.go │ │ ├── stash_entry.go │ │ ├── submodule_config.go │ │ ├── tag.go │ │ ├── working_tree_state.go │ │ └── worktree.go │ ├── oscommands │ │ ├── cmd_obj.go │ │ ├── cmd_obj_builder.go │ │ ├── cmd_obj_runner.go │ │ ├── cmd_obj_runner_default.go │ │ ├── cmd_obj_runner_test.go │ │ ├── cmd_obj_runner_windows.go │ │ ├── cmd_obj_test.go │ │ ├── copy.go │ │ ├── dummies.go │ │ ├── fake_cmd_obj_runner.go │ │ ├── gui_io.go │ │ ├── os.go │ │ ├── os_default_platform.go │ │ ├── os_default_test.go │ │ ├── os_test.go │ │ ├── os_windows.go │ │ └── os_windows_test.go │ ├── patch │ │ ├── format.go │ │ ├── hunk.go │ │ ├── parse.go │ │ ├── patch.go │ │ ├── patch_builder.go │ │ ├── patch_line.go │ │ ├── patch_test.go │ │ └── transform.go │ └── testdata │ │ ├── a_dir │ │ └── file │ │ └── a_file ├── common │ ├── common.go │ └── dummies.go ├── config │ ├── app_config.go │ ├── app_config_test.go │ ├── config_default_platform.go │ ├── config_linux.go │ ├── config_windows.go │ ├── dummies.go │ ├── editor_presets.go │ ├── editor_presets_test.go │ ├── keynames.go │ ├── pager_config.go │ ├── user_config.go │ ├── user_config_validation.go │ └── user_config_validation_test.go ├── constants │ └── links.go ├── env │ └── env.go ├── fakes │ └── log.go ├── gui │ ├── background.go │ ├── command_log_panel.go │ ├── context.go │ ├── context │ │ ├── base_context.go │ │ ├── branches_context.go │ │ ├── commit_files_context.go │ │ ├── commit_message_context.go │ │ ├── confirmation_context.go │ │ ├── context.go │ │ ├── context_common.go │ │ ├── dynamic_title_builder.go │ │ ├── filtered_list.go │ │ ├── filtered_list_view_model.go │ │ ├── history_trait.go │ │ ├── list_context_trait.go │ │ ├── list_renderer.go │ │ ├── list_renderer_test.go │ │ ├── list_view_model.go │ │ ├── local_commits_context.go │ │ ├── main_context.go │ │ ├── menu_context.go │ │ ├── merge_conflicts_context.go │ │ ├── parent_context_mgr.go │ │ ├── patch_explorer_context.go │ │ ├── prompt_context.go │ │ ├── reflog_commits_context.go │ │ ├── remote_branches_context.go │ │ ├── remotes_context.go │ │ ├── search_trait.go │ │ ├── setup.go │ │ ├── simple_context.go │ │ ├── stash_context.go │ │ ├── sub_commits_context.go │ │ ├── submodules_context.go │ │ ├── suggestions_context.go │ │ ├── tags_context.go │ │ ├── traits │ │ │ └── list_cursor.go │ │ ├── view_trait.go │ │ ├── working_tree_context.go │ │ └── worktrees_context.go │ ├── context_config.go │ ├── controllers.go │ ├── controllers │ │ ├── attach.go │ │ ├── base_controller.go │ │ ├── basic_commits_controller.go │ │ ├── bisect_controller.go │ │ ├── branches_controller.go │ │ ├── command_log_controller.go │ │ ├── commit_description_controller.go │ │ ├── commit_message_controller.go │ │ ├── commits_files_controller.go │ │ ├── common.go │ │ ├── confirmation_controller.go │ │ ├── context_lines_controller.go │ │ ├── custom_patch_options_menu_action.go │ │ ├── diffing_menu_action.go │ │ ├── files_controller.go │ │ ├── filter_controller.go │ │ ├── filtering_menu_action.go │ │ ├── git_flow_controller.go │ │ ├── global_controller.go │ │ ├── helpers │ │ │ ├── amend_helper.go │ │ │ ├── app_status_helper.go │ │ │ ├── bisect_helper.go │ │ │ ├── branches_helper.go │ │ │ ├── cherry_pick_helper.go │ │ │ ├── commits_helper.go │ │ │ ├── commits_helper_test.go │ │ │ ├── confirmation_helper.go │ │ │ ├── credentials_helper.go │ │ │ ├── diff_helper.go │ │ │ ├── files_helper.go │ │ │ ├── fixup_helper.go │ │ │ ├── fixup_helper_test.go │ │ │ ├── gpg_helper.go │ │ │ ├── helpers.go │ │ │ ├── host_helper.go │ │ │ ├── inline_status_helper.go │ │ │ ├── merge_and_rebase_helper.go │ │ │ ├── merge_conflicts_helper.go │ │ │ ├── mode_helper.go │ │ │ ├── patch_building_helper.go │ │ │ ├── record_directory_helper.go │ │ │ ├── refresh_helper.go │ │ │ ├── refs_helper.go │ │ │ ├── repos_helper.go │ │ │ ├── search_helper.go │ │ │ ├── signal_handling.go │ │ │ ├── signal_handling_windows.go │ │ │ ├── snake_helper.go │ │ │ ├── staging_helper.go │ │ │ ├── sub_commits_helper.go │ │ │ ├── suggestions_helper.go │ │ │ ├── suspend_resume_helper.go │ │ │ ├── tags_helper.go │ │ │ ├── update_helper.go │ │ │ ├── upstream_helper.go │ │ │ ├── upstream_helper_test.go │ │ │ ├── view_helper.go │ │ │ ├── window_arrangement_helper.go │ │ │ ├── window_arrangement_helper_test.go │ │ │ ├── window_helper.go │ │ │ ├── working_tree_helper.go │ │ │ └── worktree_helper.go │ │ ├── jump_to_side_window_controller.go │ │ ├── list_controller.go │ │ ├── list_controller_trait.go │ │ ├── local_commits_controller.go │ │ ├── local_commits_controller_test.go │ │ ├── main_view_controller.go │ │ ├── menu_controller.go │ │ ├── merge_conflicts_controller.go │ │ ├── options_menu_action.go │ │ ├── patch_building_controller.go │ │ ├── patch_explorer_controller.go │ │ ├── patch_explorer_controller_test.go │ │ ├── prompt_controller.go │ │ ├── quit_actions.go │ │ ├── reflog_commits_controller.go │ │ ├── remote_branches_controller.go │ │ ├── remotes_controller.go │ │ ├── remotes_controller_test.go │ │ ├── rename_similarity_threshold_controller.go │ │ ├── screen_mode_actions.go │ │ ├── scroll_off_margin.go │ │ ├── scroll_off_margin_test.go │ │ ├── search_controller.go │ │ ├── search_prompt_controller.go │ │ ├── shell_command_action.go │ │ ├── side_window_controller.go │ │ ├── snake_controller.go │ │ ├── staging_controller.go │ │ ├── stash_controller.go │ │ ├── status_controller.go │ │ ├── sub_commits_controller.go │ │ ├── submodules_controller.go │ │ ├── suggestions_controller.go │ │ ├── switch_to_diff_files_controller.go │ │ ├── switch_to_focused_main_view_controller.go │ │ ├── switch_to_sub_commits_controller.go │ │ ├── sync_controller.go │ │ ├── tags_controller.go │ │ ├── toggle_whitespace_action.go │ │ ├── undo_controller.go │ │ ├── vertical_scroll_controller.go │ │ ├── view_selection_controller.go │ │ ├── workspace_reset_controller.go │ │ ├── worktree_options_controller.go │ │ └── worktrees_controller.go │ ├── dummies.go │ ├── editors.go │ ├── extras_panel.go │ ├── filetree │ │ ├── README.md │ │ ├── build_tree.go │ │ ├── build_tree_test.go │ │ ├── collapsed_paths.go │ │ ├── commit_file_node.go │ │ ├── commit_file_tree.go │ │ ├── commit_file_tree_view_model.go │ │ ├── file_node.go │ │ ├── file_node_test.go │ │ ├── file_tree.go │ │ ├── file_tree_test.go │ │ ├── file_tree_view_model.go │ │ └── node.go │ ├── global_handlers.go │ ├── gui.go │ ├── gui_common.go │ ├── gui_driver.go │ ├── information_panel.go │ ├── keybindings.go │ ├── keybindings │ │ └── keybindings.go │ ├── layout.go │ ├── main_panels.go │ ├── menu_panel.go │ ├── mergeconflicts │ │ ├── find_conflicts.go │ │ ├── find_conflicts_test.go │ │ ├── merge_conflict.go │ │ ├── rendering.go │ │ ├── state.go │ │ └── state_test.go │ ├── modes │ │ ├── cherrypicking │ │ │ └── cherry_picking.go │ │ ├── diffing │ │ │ └── diffing.go │ │ ├── filtering │ │ │ └── filtering.go │ │ └── marked_base_commit │ │ │ └── marked_base_commit.go │ ├── options_map.go │ ├── patch_exploring │ │ ├── focus.go │ │ ├── focus_test.go │ │ └── state.go │ ├── popup │ │ └── popup_handler.go │ ├── presentation │ │ ├── authors │ │ │ ├── authors.go │ │ │ └── authors_test.go │ │ ├── branches.go │ │ ├── branches_test.go │ │ ├── commits.go │ │ ├── commits_test.go │ │ ├── files.go │ │ ├── files_test.go │ │ ├── graph │ │ │ ├── cell.go │ │ │ ├── graph.go │ │ │ └── graph_test.go │ │ ├── icons │ │ │ ├── file_icons.go │ │ │ ├── file_icons_test.go │ │ │ ├── git_icons.go │ │ │ └── icons.go │ │ ├── item_operations.go │ │ ├── loader.go │ │ ├── reflog_commits.go │ │ ├── remote_branches.go │ │ ├── remotes.go │ │ ├── stash_entries.go │ │ ├── status.go │ │ ├── submodules.go │ │ ├── suggestions.go │ │ ├── tags.go │ │ └── worktrees.go │ ├── pty.go │ ├── pty_windows.go │ ├── recent_repos_panel.go │ ├── services │ │ └── custom_commands │ │ │ ├── client.go │ │ │ ├── handler_creator.go │ │ │ ├── keybinding_creator.go │ │ │ ├── menu_generator.go │ │ │ ├── menu_generator_test.go │ │ │ ├── models.go │ │ │ ├── resolver.go │ │ │ └── session_state_loader.go │ ├── status │ │ └── status_manager.go │ ├── style │ │ ├── basic_styles.go │ │ ├── color.go │ │ ├── decoration.go │ │ ├── hyperlink.go │ │ ├── style_test.go │ │ └── text_style.go │ ├── tasks_adapter.go │ ├── test_mode.go │ ├── types │ │ ├── common.go │ │ ├── common_commands.go │ │ ├── context.go │ │ ├── keybindings.go │ │ ├── modes.go │ │ ├── ref_range.go │ │ ├── refresh.go │ │ ├── rendering.go │ │ ├── search_state.go │ │ ├── suggestion.go │ │ ├── version_number.go │ │ ├── version_number_test.go │ │ └── views.go │ ├── view_helpers.go │ └── views.go ├── i18n │ ├── english.go │ ├── i18n.go │ ├── i18n_test.go │ └── translations │ │ ├── README.md │ │ ├── ja.json │ │ ├── ko.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── zh-CN.json │ │ └── zh-TW.json ├── integration │ ├── README.md │ ├── clients │ │ ├── cli.go │ │ ├── go_test.go │ │ ├── injector │ │ │ └── main.go │ │ └── tui.go │ ├── components │ │ ├── alert_driver.go │ │ ├── assertion_helper.go │ │ ├── commit_description_panel_driver.go │ │ ├── commit_message_panel_driver.go │ │ ├── common.go │ │ ├── confirmation_driver.go │ │ ├── env.go │ │ ├── file_system.go │ │ ├── git.go │ │ ├── int_matcher.go │ │ ├── matcher.go │ │ ├── menu_driver.go │ │ ├── paths.go │ │ ├── popup.go │ │ ├── prompt_driver.go │ │ ├── random.go │ │ ├── runner.go │ │ ├── search_driver.go │ │ ├── shell.go │ │ ├── test.go │ │ ├── test_driver.go │ │ ├── test_test.go │ │ ├── text_matcher.go │ │ ├── view_driver.go │ │ └── views.go │ ├── tests │ │ ├── bisect │ │ │ ├── basic.go │ │ │ ├── choose_terms.go │ │ │ ├── from_other_branch.go │ │ │ └── skip.go │ │ ├── branch │ │ │ ├── checkout_autostash.go │ │ │ ├── checkout_by_name.go │ │ │ ├── checkout_previous_branch.go │ │ │ ├── create_tag.go │ │ │ ├── delete.go │ │ │ ├── delete_multiple.go │ │ │ ├── delete_remote_branch_when_tag_with_same_name_exists.go │ │ │ ├── delete_remote_branch_with_credential_prompt.go │ │ │ ├── delete_remote_branch_with_different_name.go │ │ │ ├── delete_while_filtering.go │ │ │ ├── detached_head.go │ │ │ ├── merge_fast_forward.go │ │ │ ├── merge_non_fast_forward.go │ │ │ ├── move_commits_to_new_branch_from_base_branch.go │ │ │ ├── move_commits_to_new_branch_from_main_branch.go │ │ │ ├── move_commits_to_new_branch_keep_stacked.go │ │ │ ├── new_branch_autostash.go │ │ │ ├── new_branch_from_remote_tracking_different_name.go │ │ │ ├── new_branch_from_remote_tracking_same_name.go │ │ │ ├── new_branch_with_prefix.go │ │ │ ├── new_branch_with_prefix_using_run_command.go │ │ │ ├── open_pull_request_invalid_target_remote_name.go │ │ │ ├── open_pull_request_no_upstream.go │ │ │ ├── open_pull_request_select_remote_and_target_branch.go │ │ │ ├── open_with_cli_arg.go │ │ │ ├── rebase.go │ │ │ ├── rebase_abort_on_conflict.go │ │ │ ├── rebase_and_drop.go │ │ │ ├── rebase_cancel_on_conflict.go │ │ │ ├── rebase_conflicts_fix_build_errors.go │ │ │ ├── rebase_copied_branch.go │ │ │ ├── rebase_does_not_autosquash.go │ │ │ ├── rebase_from_marked_base.go │ │ │ ├── rebase_onto_base_branch.go │ │ │ ├── rebase_to_upstream.go │ │ │ ├── rename.go │ │ │ ├── reset.go │ │ │ ├── reset_to_duplicate_named_tag.go │ │ │ ├── reset_to_duplicate_named_upstream.go │ │ │ ├── reset_to_upstream.go │ │ │ ├── select_commits_of_current_branch.go │ │ │ ├── set_upstream.go │ │ │ ├── shared.go │ │ │ ├── show_divergence_from_base_branch.go │ │ │ ├── show_divergence_from_upstream.go │ │ │ ├── show_divergence_from_upstream_no_divergence.go │ │ │ ├── sort_local_branches.go │ │ │ ├── sort_remote_branches.go │ │ │ ├── squash_merge.go │ │ │ ├── suggestions.go │ │ │ └── unset_upstream.go │ │ ├── cherry_pick │ │ │ ├── cherry_pick.go │ │ │ ├── cherry_pick_commit_that_becomes_empty.go │ │ │ ├── cherry_pick_conflicts.go │ │ │ ├── cherry_pick_conflicts_empty_commit_after_resolving.go │ │ │ ├── cherry_pick_during_rebase.go │ │ │ ├── cherry_pick_merge.go │ │ │ └── cherry_pick_range.go │ │ ├── commit │ │ │ ├── add_co_author.go │ │ │ ├── add_co_author_range.go │ │ │ ├── add_co_author_while_committing.go │ │ │ ├── amend.go │ │ │ ├── amend_when_there_are_conflicts_and_amend.go │ │ │ ├── amend_when_there_are_conflicts_and_cancel.go │ │ │ ├── amend_when_there_are_conflicts_and_continue.go │ │ │ ├── auto_wrap_message.go │ │ │ ├── checkout.go │ │ │ ├── checkout_file_from_commit.go │ │ │ ├── checkout_file_from_range_selection_of_commits.go │ │ │ ├── commit.go │ │ │ ├── commit_multiline.go │ │ │ ├── commit_skip_hooks.go │ │ │ ├── commit_switch_to_editor.go │ │ │ ├── commit_switch_to_editor_skip_hooks.go │ │ │ ├── commit_wip_with_prefix.go │ │ │ ├── commit_with_fallthrough_prefix.go │ │ │ ├── commit_with_global_prefix.go │ │ │ ├── commit_with_non_matching_branch_name.go │ │ │ ├── commit_with_prefix.go │ │ │ ├── copy_author_to_clipboard.go │ │ │ ├── copy_message_body_to_clipboard.go │ │ │ ├── copy_tag_to_clipboard.go │ │ │ ├── create_amend_commit.go │ │ │ ├── create_fixup_commit_in_branch_stack.go │ │ │ ├── create_tag.go │ │ │ ├── disable_copy_commit_message_body.go │ │ │ ├── discard_old_file_changes.go │ │ │ ├── discard_submodule_changes.go │ │ │ ├── do_not_show_branch_marker_for_head_commit.go │ │ │ ├── fail_hooks_then_commit_no_hooks.go │ │ │ ├── find_base_commit_for_fixup.go │ │ │ ├── find_base_commit_for_fixup_disregard_main_branch.go │ │ │ ├── find_base_commit_for_fixup_only_added_lines.go │ │ │ ├── find_base_commit_for_fixup_warning_for_added_lines.go │ │ │ ├── highlight.go │ │ │ ├── history.go │ │ │ ├── history_complex.go │ │ │ ├── new_branch.go │ │ │ ├── paste_commit_message.go │ │ │ ├── paste_commit_message_over_existing.go │ │ │ ├── preserve_commit_message.go │ │ │ ├── reset_author.go │ │ │ ├── reset_author_range.go │ │ │ ├── revert.go │ │ │ ├── revert_merge.go │ │ │ ├── revert_with_conflict_multiple_commits.go │ │ │ ├── revert_with_conflict_single_commit.go │ │ │ ├── reword.go │ │ │ ├── search.go │ │ │ ├── set_author.go │ │ │ ├── set_author_range.go │ │ │ ├── shared.go │ │ │ ├── stage_range_of_lines.go │ │ │ ├── staged.go │ │ │ ├── staged_without_hooks.go │ │ │ └── unstaged.go │ │ ├── config │ │ │ ├── custom_commands_in_per_repo_config.go │ │ │ ├── negative_refspec.go │ │ │ └── remote_named_star.go │ │ ├── conflicts │ │ │ ├── filter.go │ │ │ ├── merge_file_both.go │ │ │ ├── merge_file_current.go │ │ │ ├── merge_file_incoming.go │ │ │ ├── resolve_externally.go │ │ │ ├── resolve_multiple_files.go │ │ │ ├── resolve_no_auto_stage.go │ │ │ ├── resolve_non_textual_conflicts.go │ │ │ ├── resolve_without_trailing_lf.go │ │ │ └── undo_choose_hunk.go │ │ ├── custom_commands │ │ │ ├── access_commit_properties.go │ │ │ ├── basic_command.go │ │ │ ├── check_for_conflicts.go │ │ │ ├── custom_commands_submenu.go │ │ │ ├── form_prompts.go │ │ │ ├── global_context.go │ │ │ ├── menu_from_command.go │ │ │ ├── menu_from_commands_output.go │ │ │ ├── multiple_contexts.go │ │ │ ├── multiple_prompts.go │ │ │ ├── run_command.go │ │ │ ├── selected_commit.go │ │ │ ├── selected_commit_range.go │ │ │ ├── selected_path.go │ │ │ ├── selected_submodule.go │ │ │ ├── show_output_in_panel.go │ │ │ ├── suggestions_command.go │ │ │ └── suggestions_preset.go │ │ ├── demo │ │ │ ├── amend_old_commit.go │ │ │ ├── bisect.go │ │ │ ├── cherry_pick.go │ │ │ ├── commit_and_push.go │ │ │ ├── commit_graph.go │ │ │ ├── custom_command.go │ │ │ ├── custom_patch.go │ │ │ ├── diff_commits.go │ │ │ ├── filter.go │ │ │ ├── interactive_rebase.go │ │ │ ├── nuke_working_tree.go │ │ │ ├── rebase_onto.go │ │ │ ├── shared.go │ │ │ ├── stage_lines.go │ │ │ ├── undo.go │ │ │ └── worktree_create_from_branches.go │ │ ├── diff │ │ │ ├── copy_to_clipboard.go │ │ │ ├── diff.go │ │ │ ├── diff_and_apply_patch.go │ │ │ ├── diff_commits.go │ │ │ ├── diff_non_sticky_range.go │ │ │ ├── ignore_whitespace.go │ │ │ └── rename_similarity_threshold_change.go │ │ ├── file │ │ │ ├── collapse_expand.go │ │ │ ├── copy_menu.go │ │ │ ├── dir_with_untracked_file.go │ │ │ ├── discard_all_dir_changes.go │ │ │ ├── discard_range_select.go │ │ │ ├── discard_staged_changes.go │ │ │ ├── discard_unstaged_dir_changes.go │ │ │ ├── discard_unstaged_file_changes.go │ │ │ ├── discard_unstaged_range_select.go │ │ │ ├── discard_various_changes.go │ │ │ ├── discard_various_changes_range_select.go │ │ │ ├── gitignore.go │ │ │ ├── gitignore_special_characters.go │ │ │ ├── remember_commit_message_after_fail.go │ │ │ ├── rename_similarity_threshold_change.go │ │ │ ├── renamed_files.go │ │ │ ├── renamed_files_no_root_item.go │ │ │ ├── shared.go │ │ │ ├── stage_children_range_select.go │ │ │ ├── stage_deleted_range_select.go │ │ │ └── stage_range_select.go │ │ ├── filter_and_search │ │ │ ├── filter_by_file_status.go │ │ │ ├── filter_commit_files.go │ │ │ ├── filter_files.go │ │ │ ├── filter_fuzzy.go │ │ │ ├── filter_menu.go │ │ │ ├── filter_menu_by_keybinding.go │ │ │ ├── filter_menu_cancel_filter_with_escape.go │ │ │ ├── filter_menu_with_no_keybindings.go │ │ │ ├── filter_remote_branches.go │ │ │ ├── filter_remotes.go │ │ │ ├── filter_search_history.go │ │ │ ├── filter_updates_when_model_changes.go │ │ │ ├── nested_filter.go │ │ │ ├── nested_filter_transient.go │ │ │ ├── new_search.go │ │ │ ├── stage_all_stages_only_tracked_files_in_tracked_only_filter.go │ │ │ └── staging_folder_stages_only_tracked_files_in_tracked_only_filter.go │ │ ├── filter_by_author │ │ │ ├── select_author.go │ │ │ ├── shared.go │ │ │ └── type_author.go │ │ ├── filter_by_path │ │ │ ├── cli_arg.go │ │ │ ├── drop_commit_in_filtering_mode.go │ │ │ ├── keep_same_commit_selected_on_exit.go │ │ │ ├── reword_commit_in_filtering_mode.go │ │ │ ├── select_file.go │ │ │ ├── select_filtered_file_when_entering_commit.go │ │ │ ├── select_filtered_file_when_entering_commit_no_root_item.go │ │ │ ├── shared.go │ │ │ ├── show_diffs_for_renamed_file.go │ │ │ └── type_file.go │ │ ├── interactive_rebase │ │ │ ├── advanced_interactive_rebase.go │ │ │ ├── amend_commit_with_conflict.go │ │ │ ├── amend_first_commit.go │ │ │ ├── amend_fixup_commit.go │ │ │ ├── amend_head_commit_during_rebase.go │ │ │ ├── amend_merge.go │ │ │ ├── amend_non_head_commit_during_rebase.go │ │ │ ├── delete_update_ref_todo.go │ │ │ ├── dont_show_branch_heads_for_todo_items.go │ │ │ ├── drop_commit_in_copied_branch_with_update_ref.go │ │ │ ├── drop_merge_commit.go │ │ │ ├── drop_todo_commit_with_update_ref.go │ │ │ ├── drop_with_custom_comment_char.go │ │ │ ├── edit_and_auto_amend.go │ │ │ ├── edit_first_commit.go │ │ │ ├── edit_last_commit_of_stacked_branch.go │ │ │ ├── edit_non_todo_commit_during_rebase.go │ │ │ ├── edit_range_select_down_to_merge_outside_rebase.go │ │ │ ├── edit_range_select_outside_rebase.go │ │ │ ├── edit_the_confl_commit.go │ │ │ ├── fixup_first_commit.go │ │ │ ├── fixup_second_commit.go │ │ │ ├── interactive_rebase_of_copied_branch.go │ │ │ ├── interactive_rebase_with_conflict_for_edit_command.go │ │ │ ├── mid_rebase_range_select.go │ │ │ ├── move.go │ │ │ ├── move_across_branch_boundary_outside_rebase.go │ │ │ ├── move_in_rebase.go │ │ │ ├── move_update_ref_todo.go │ │ │ ├── move_with_custom_comment_char.go │ │ │ ├── outside_rebase_range_select.go │ │ │ ├── pick_rescheduled.go │ │ │ ├── quick_start.go │ │ │ ├── quick_start_keep_selection.go │ │ │ ├── quick_start_keep_selection_range.go │ │ │ ├── rebase.go │ │ │ ├── rebase_with_commit_that_becomes_empty.go │ │ │ ├── revert_during_rebase_when_stopped_on_edit.go │ │ │ ├── revert_multiple_commits_in_interactive_rebase.go │ │ │ ├── revert_single_commit_in_interactive_rebase.go │ │ │ ├── reword_commit_with_editor_and_fail.go │ │ │ ├── reword_first_commit.go │ │ │ ├── reword_last_commit.go │ │ │ ├── reword_last_commit_of_stacked_branch.go │ │ │ ├── reword_merge_commit.go │ │ │ ├── reword_you_are_here_commit.go │ │ │ ├── reword_you_are_here_commit_with_editor.go │ │ │ ├── shared.go │ │ │ ├── show_exec_todos.go │ │ │ ├── squash_down_first_commit.go │ │ │ ├── squash_down_second_commit.go │ │ │ ├── squash_fixups_above.go │ │ │ ├── squash_fixups_above_first_commit.go │ │ │ ├── squash_fixups_in_current_branch.go │ │ │ ├── swap_in_rebase_with_conflict.go │ │ │ ├── swap_in_rebase_with_conflict_and_edit.go │ │ │ ├── swap_with_conflict.go │ │ │ └── view_files_of_todo_entries.go │ │ ├── misc │ │ │ ├── confirm_on_quit.go │ │ │ ├── copy_confirmation_message_to_clipboard.go │ │ │ ├── copy_to_clipboard.go │ │ │ ├── disabled_keybindings.go │ │ │ ├── initial_open.go │ │ │ └── recent_repos_on_launch.go │ │ ├── patch_building │ │ │ ├── apply.go │ │ │ ├── apply_in_reverse.go │ │ │ ├── apply_in_reverse_with_conflict.go │ │ │ ├── apply_with_modified_file_conflict.go │ │ │ ├── apply_with_modified_file_no_conflict.go │ │ │ ├── edit_line_in_patch_building_panel.go │ │ │ ├── move_range_to_index.go │ │ │ ├── move_to_earlier_commit.go │ │ │ ├── move_to_earlier_commit_from_added_file.go │ │ │ ├── move_to_index.go │ │ │ ├── move_to_index_from_added_file_with_conflict.go │ │ │ ├── move_to_index_part_of_adjacent_added_lines.go │ │ │ ├── move_to_index_partial.go │ │ │ ├── move_to_index_with_conflict.go │ │ │ ├── move_to_index_with_modified_file.go │ │ │ ├── move_to_index_works_even_if_noprefix_is_set.go │ │ │ ├── move_to_later_commit.go │ │ │ ├── move_to_later_commit_partial_hunk.go │ │ │ ├── move_to_new_commit.go │ │ │ ├── move_to_new_commit_before.go │ │ │ ├── move_to_new_commit_from_added_file.go │ │ │ ├── move_to_new_commit_from_deleted_file.go │ │ │ ├── move_to_new_commit_in_last_commit_of_stacked_branch.go │ │ │ ├── move_to_new_commit_partial_hunk.go │ │ │ ├── remove_from_commit.go │ │ │ ├── remove_parts_of_added_file.go │ │ │ ├── reset_with_escape.go │ │ │ ├── select_all_files.go │ │ │ ├── specific_selection.go │ │ │ ├── start_new_patch.go │ │ │ └── toggle_range.go │ │ ├── reflog │ │ │ ├── checkout.go │ │ │ ├── cherry_pick.go │ │ │ ├── do_not_show_branch_markers_in_reflog_subcommits.go │ │ │ ├── patch.go │ │ │ └── reset.go │ │ ├── remote │ │ │ └── add_fork_remote.go │ │ ├── shared │ │ │ ├── README.md │ │ │ └── conflicts.go │ │ ├── shell_commands │ │ │ ├── basic_shell_command.go │ │ │ ├── complex_shell_command.go │ │ │ ├── delete_from_history.go │ │ │ ├── edit_history.go │ │ │ ├── history.go │ │ │ └── omit_from_history.go │ │ ├── staging │ │ │ ├── diff_change_screen_mode.go │ │ │ ├── diff_context_change.go │ │ │ ├── discard_all_changes.go │ │ │ ├── search.go │ │ │ ├── stage_hunks.go │ │ │ ├── stage_lines.go │ │ │ └── stage_ranges.go │ │ ├── stash │ │ │ ├── apply.go │ │ │ ├── apply_patch.go │ │ │ ├── create_branch.go │ │ │ ├── drop.go │ │ │ ├── drop_multiple.go │ │ │ ├── drop_multiple_in_filtered_mode.go │ │ │ ├── filter_by_path.go │ │ │ ├── pop.go │ │ │ ├── prevent_discarding_file_changes.go │ │ │ ├── rename.go │ │ │ ├── show_with_branch_named_stash.go │ │ │ ├── stash.go │ │ │ ├── stash_all.go │ │ │ ├── stash_and_keep_index.go │ │ │ ├── stash_including_untracked_files.go │ │ │ ├── stash_staged.go │ │ │ ├── stash_staged_partial_file.go │ │ │ └── stash_unstaged.go │ │ ├── status │ │ │ ├── click_repo_name_to_open_repos_menu.go │ │ │ ├── click_to_focus.go │ │ │ ├── click_working_tree_state_to_open_rebase_options_menu.go │ │ │ ├── log_cmd.go │ │ │ └── log_cmd_status_panel_all_branches_log.go │ │ ├── submodule │ │ │ ├── add.go │ │ │ ├── enter.go │ │ │ ├── enter_nested.go │ │ │ ├── remove.go │ │ │ ├── remove_nested.go │ │ │ ├── reset.go │ │ │ ├── reset_folder.go │ │ │ └── shared.go │ │ ├── sync │ │ │ ├── fetch_and_auto_forward_branches_all_branches.go │ │ │ ├── fetch_and_auto_forward_branches_all_branches_checked_out_in_other_worktree.go │ │ │ ├── fetch_and_auto_forward_branches_none.go │ │ │ ├── fetch_and_auto_forward_branches_only_main_branches.go │ │ │ ├── fetch_prune.go │ │ │ ├── fetch_when_sorted_by_date.go │ │ │ ├── force_push.go │ │ │ ├── force_push_multiple_matching.go │ │ │ ├── force_push_multiple_upstream.go │ │ │ ├── force_push_remote_branch_not_stored_locally.go │ │ │ ├── force_push_triangular.go │ │ │ ├── pull.go │ │ │ ├── pull_and_set_upstream.go │ │ │ ├── pull_merge.go │ │ │ ├── pull_merge_conflict.go │ │ │ ├── pull_rebase.go │ │ │ ├── pull_rebase_conflict.go │ │ │ ├── pull_rebase_interactive_conflict.go │ │ │ ├── pull_rebase_interactive_conflict_drop.go │ │ │ ├── push.go │ │ │ ├── push_and_auto_set_upstream.go │ │ │ ├── push_and_set_upstream.go │ │ │ ├── push_follow_tags.go │ │ │ ├── push_no_follow_tags.go │ │ │ ├── push_tag.go │ │ │ ├── push_with_credential_prompt.go │ │ │ ├── rename_branch_and_pull.go │ │ │ └── shared.go │ │ ├── tag │ │ │ ├── checkout.go │ │ │ ├── checkout_when_branch_with_same_name_exists.go │ │ │ ├── copy_to_clipboard.go │ │ │ ├── create_while_committing.go │ │ │ ├── crud_annotated.go │ │ │ ├── crud_lightweight.go │ │ │ ├── delete_local_and_remote.go │ │ │ ├── delete_remote_tag_when_branch_with_same_name_exists.go │ │ │ ├── force_tag_annotated.go │ │ │ ├── force_tag_lightweight.go │ │ │ ├── reset.go │ │ │ └── reset_to_duplicate_named_branch.go │ │ ├── test_list.go │ │ ├── test_list_generator.go │ │ ├── tests.go │ │ ├── ui │ │ │ ├── accordion.go │ │ │ ├── disable_switch_tab_with_panel_jump_keys.go │ │ │ ├── empty_menu.go │ │ │ ├── keybinding_suggestions_when_switching_repos.go │ │ │ ├── mode_specific_keybinding_suggestions.go │ │ │ ├── open_link_failure.go │ │ │ ├── range_select.go │ │ │ ├── switch_tab_from_menu.go │ │ │ └── switch_tab_with_panel_jump_keys.go │ │ ├── undo │ │ │ ├── undo_checkout_and_drop.go │ │ │ ├── undo_commit.go │ │ │ └── undo_drop.go │ │ └── worktree │ │ │ ├── add_from_branch.go │ │ │ ├── add_from_branch_detached.go │ │ │ ├── add_from_commit.go │ │ │ ├── associate_branch_bisect.go │ │ │ ├── associate_branch_rebase.go │ │ │ ├── bare_repo.go │ │ │ ├── bare_repo_worktree_config.go │ │ │ ├── crud.go │ │ │ ├── custom_command.go │ │ │ ├── detach_worktree_from_branch.go │ │ │ ├── dotfile_bare_repo.go │ │ │ ├── double_nested_linked_submodule.go │ │ │ ├── exclude_file_in_worktree.go │ │ │ ├── fast_forward_worktree_branch.go │ │ │ ├── fast_forward_worktree_branch_should_not_pollute_current_worktree.go │ │ │ ├── force_remove_worktree.go │ │ │ ├── force_remove_worktree_with_submodules.go │ │ │ ├── remove_worktree_from_branch.go │ │ │ ├── reset_window_tabs.go │ │ │ ├── symlink_into_repo_subdir.go │ │ │ └── worktree_in_repo.go │ └── types │ │ └── types.go ├── jsonschema │ ├── generate.go │ ├── generate_config_docs.go │ └── generator.go ├── logs │ ├── logs.go │ └── tail │ │ ├── logs_default.go │ │ ├── logs_windows.go │ │ └── tail.go ├── snake │ ├── snake.go │ └── snake_test.go ├── tasks │ ├── async_handler.go │ ├── async_handler_test.go │ ├── tasks.go │ └── tasks_test.go ├── theme │ ├── gocui.go │ ├── style.go │ ├── style_test.go │ └── theme.go ├── updates │ └── updates.go └── utils │ ├── color.go │ ├── color_test.go │ ├── date.go │ ├── date_test.go │ ├── dummies.go │ ├── errors.go │ ├── formatting.go │ ├── formatting_test.go │ ├── history_buffer.go │ ├── history_buffer_test.go │ ├── io.go │ ├── io_test.go │ ├── lines.go │ ├── lines_test.go │ ├── once_writer.go │ ├── once_writer_test.go │ ├── rebase_todo.go │ ├── rebase_todo_test.go │ ├── regexp.go │ ├── regexp_test.go │ ├── search.go │ ├── search_test.go │ ├── slice.go │ ├── slice_test.go │ ├── string_pool.go │ ├── string_stack.go │ ├── template.go │ ├── template_test.go │ ├── thread_safe_map.go │ ├── thread_safe_map_test.go │ ├── utils.go │ ├── utils_test.go │ └── yaml_utils │ ├── yaml_utils.go │ └── yaml_utils_test.go ├── schema-master └── config.json ├── schema └── config.json ├── scripts ├── bisect.sh ├── bump_gocui.sh ├── bump_lazycore.sh ├── bump_modules.sh ├── check_filenames.sh ├── check_for_fixups.sh ├── golangci-lint-shim.sh ├── record_demo.sh ├── run_integration_tests.sh ├── update_docs_for_release.sh └── update_language_files.sh ├── shell.nix ├── test ├── .gitconfig ├── README.md ├── default_test_config │ └── config.yml ├── files │ └── pre-push └── global_git_config └── vendor ├── dario.cat └── mergo │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com ├── Microsoft │ └── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ ├── fs │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── security.go │ │ │ └── zsyscall_windows.go │ │ ├── socket │ │ │ ├── rawaddr.go │ │ │ ├── socket.go │ │ │ └── zsyscall_windows.go │ │ └── stringbuffer │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ └── guid │ │ │ ├── guid.go │ │ │ ├── guid_nonwindows.go │ │ │ ├── guid_windows.go │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── ProtonMail │ └── go-crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bitcurves │ │ └── bitcurve.go │ │ ├── brainpool │ │ ├── brainpool.go │ │ └── rcurve.go │ │ ├── eax │ │ ├── eax.go │ │ ├── eax_test_vectors.go │ │ └── random_vectors.go │ │ ├── internal │ │ └── byteutil │ │ │ └── byteutil.go │ │ ├── ocb │ │ ├── ocb.go │ │ ├── random_vectors.go │ │ ├── rfc7253_test_vectors_suite_a.go │ │ └── rfc7253_test_vectors_suite_b.go │ │ └── openpgp │ │ ├── aes │ │ └── keywrap │ │ │ └── keywrap.go │ │ ├── armor │ │ ├── armor.go │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── ecdh │ │ └── ecdh.go │ │ ├── ecdsa │ │ └── ecdsa.go │ │ ├── ed25519 │ │ └── ed25519.go │ │ ├── ed448 │ │ └── ed448.go │ │ ├── eddsa │ │ └── eddsa.go │ │ ├── elgamal │ │ └── elgamal.go │ │ ├── errors │ │ └── errors.go │ │ ├── hash.go │ │ ├── internal │ │ ├── algorithm │ │ │ ├── aead.go │ │ │ ├── cipher.go │ │ │ └── hash.go │ │ ├── ecc │ │ │ ├── curve25519.go │ │ │ ├── curve_info.go │ │ │ ├── curves.go │ │ │ ├── ed25519.go │ │ │ ├── ed448.go │ │ │ ├── generic.go │ │ │ └── x448.go │ │ └── encoding │ │ │ ├── encoding.go │ │ │ ├── mpi.go │ │ │ └── oid.go │ │ ├── key_generation.go │ │ ├── keys.go │ │ ├── keys_test_data.go │ │ ├── packet │ │ ├── aead_config.go │ │ ├── aead_crypter.go │ │ ├── aead_encrypted.go │ │ ├── compressed.go │ │ ├── config.go │ │ ├── config_v5.go │ │ ├── encrypted_key.go │ │ ├── literal.go │ │ ├── marker.go │ │ ├── notation.go │ │ ├── ocfb.go │ │ ├── one_pass_signature.go │ │ ├── opaque.go │ │ ├── packet.go │ │ ├── packet_sequence.go │ │ ├── packet_unsupported.go │ │ ├── padding.go │ │ ├── private_key.go │ │ ├── private_key_test_data.go │ │ ├── public_key.go │ │ ├── public_key_test_data.go │ │ ├── reader.go │ │ ├── recipient.go │ │ ├── signature.go │ │ ├── symmetric_key_encrypted.go │ │ ├── symmetrically_encrypted.go │ │ ├── symmetrically_encrypted_aead.go │ │ ├── symmetrically_encrypted_mdc.go │ │ ├── userattribute.go │ │ └── userid.go │ │ ├── read.go │ │ ├── read_write_test_data.go │ │ ├── s2k │ │ ├── s2k.go │ │ ├── s2k_cache.go │ │ └── s2k_config.go │ │ ├── write.go │ │ ├── x25519 │ │ └── x25519.go │ │ └── x448 │ │ └── x448.go ├── adrg │ └── xdg │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base_dirs.go │ │ ├── codecov.yml │ │ ├── doc.go │ │ ├── internal │ │ └── pathutil │ │ │ ├── pathutil.go │ │ │ ├── pathutil_plan9.go │ │ │ ├── pathutil_unix.go │ │ │ └── pathutil_windows.go │ │ ├── paths_darwin.go │ │ ├── paths_plan9.go │ │ ├── paths_unix.go │ │ ├── paths_windows.go │ │ ├── user_dirs.go │ │ └── xdg.go ├── atotto │ └── clipboard │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clipboard.go │ │ ├── clipboard_darwin.go │ │ ├── clipboard_plan9.go │ │ ├── clipboard_unix.go │ │ └── clipboard_windows.go ├── aybabtme │ └── humanlog │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── docker_compose_handler.go │ │ ├── goreleaser.yaml │ │ ├── handler.go │ │ ├── json_handler.go │ │ ├── logfmt_handler.go │ │ ├── scanner.go │ │ └── time_parse.go ├── bahlo │ └── generic-list-go │ │ ├── LICENSE │ │ ├── README.md │ │ └── list.go ├── buger │ └── jsonparser │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bytes.go │ │ ├── bytes_safe.go │ │ ├── bytes_unsafe.go │ │ ├── escape.go │ │ ├── fuzz.go │ │ ├── oss-fuzz-build.sh │ │ └── parser.go ├── clipperhouse │ └── uax29 │ │ └── v2 │ │ ├── LICENSE │ │ ├── graphemes │ │ ├── README.md │ │ ├── iterator.go │ │ ├── reader.go │ │ ├── splitfunc.go │ │ └── trie.go │ │ └── internal │ │ └── iterators │ │ └── iterator.go ├── cloudflare │ └── circl │ │ ├── LICENSE │ │ ├── dh │ │ ├── x25519 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ └── x448 │ │ │ ├── curve.go │ │ │ ├── curve_amd64.go │ │ │ ├── curve_amd64.h │ │ │ ├── curve_amd64.s │ │ │ ├── curve_generic.go │ │ │ ├── curve_noasm.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ └── table.go │ │ ├── ecc │ │ └── goldilocks │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── isogeny.go │ │ │ ├── point.go │ │ │ ├── scalar.go │ │ │ ├── twist.go │ │ │ ├── twistPoint.go │ │ │ ├── twistTables.go │ │ │ └── twist_basemult.go │ │ ├── internal │ │ ├── conv │ │ │ └── conv.go │ │ └── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── rc.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── math │ │ ├── fp25519 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ └── fp_noasm.go │ │ ├── fp448 │ │ │ ├── fp.go │ │ │ ├── fp_amd64.go │ │ │ ├── fp_amd64.h │ │ │ ├── fp_amd64.s │ │ │ ├── fp_generic.go │ │ │ ├── fp_noasm.go │ │ │ └── fuzzer.go │ │ ├── integer.go │ │ ├── mlsbset │ │ │ ├── mlsbset.go │ │ │ └── power.go │ │ ├── primes.go │ │ └── wnaf.go │ │ └── sign │ │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── modular.go │ │ ├── mult.go │ │ ├── point.go │ │ ├── pubkey.go │ │ ├── pubkey112.go │ │ ├── signapi.go │ │ └── tables.go │ │ ├── ed448 │ │ ├── ed448.go │ │ └── signapi.go │ │ └── sign.go ├── cloudfoundry │ └── jibber_jabber │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── jibber_jabber.go │ │ ├── jibber_jabber_unix.go │ │ └── jibber_jabber_windows.go ├── creack │ └── pty │ │ ├── .gitignore │ │ ├── Dockerfile.riscv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ioctl.go │ │ ├── ioctl_bsd.go │ │ ├── ioctl_solaris.go │ │ ├── mktypes.bash │ │ ├── pty_darwin.go │ │ ├── pty_dragonfly.go │ │ ├── pty_freebsd.go │ │ ├── pty_linux.go │ │ ├── pty_openbsd.go │ │ ├── pty_solaris.go │ │ ├── pty_unsupported.go │ │ ├── run.go │ │ ├── test_crosscompile.sh │ │ ├── util.go │ │ ├── util_solaris.go │ │ ├── ztypes_386.go │ │ ├── ztypes_amd64.go │ │ ├── ztypes_arm.go │ │ ├── ztypes_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_mipsx.go │ │ ├── ztypes_openbsd_32bit_int.go │ │ ├── ztypes_ppc64.go │ │ ├── ztypes_ppc64le.go │ │ ├── ztypes_riscvx.go │ │ └── ztypes_s390x.go ├── cyphar │ └── filepath-securejoin │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── doc.go │ │ ├── gocompat_errors_go120.go │ │ ├── gocompat_errors_unsupported.go │ │ ├── gocompat_generics_go121.go │ │ ├── gocompat_generics_unsupported.go │ │ ├── join.go │ │ ├── lookup_linux.go │ │ ├── mkdir_linux.go │ │ ├── open_linux.go │ │ ├── openat2_linux.go │ │ ├── openat_linux.go │ │ ├── procfs_linux.go │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── emirpasic │ └── gods │ │ ├── LICENSE │ │ ├── containers │ │ ├── containers.go │ │ ├── enumerable.go │ │ ├── iterator.go │ │ └── serialization.go │ │ ├── lists │ │ ├── arraylist │ │ │ ├── arraylist.go │ │ │ ├── enumerable.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── lists.go │ │ ├── trees │ │ ├── binaryheap │ │ │ ├── binaryheap.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ └── trees.go │ │ └── utils │ │ ├── comparator.go │ │ ├── sort.go │ │ └── utils.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ └── doc.go ├── gdamore │ ├── encoding │ │ ├── .appveyor.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ascii.go │ │ ├── charmap.go │ │ ├── doc.go │ │ ├── ebcdic.go │ │ ├── latin1.go │ │ ├── latin5.go │ │ └── utf8.go │ └── tcell │ │ └── v2 │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGESv2.md │ │ ├── LICENSE │ │ ├── README-wasm.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── TUTORIAL.md │ │ ├── UKRAINE.md │ │ ├── attr.go │ │ ├── cell.go │ │ ├── charset_plan9.go │ │ ├── charset_stub.go │ │ ├── charset_unix.go │ │ ├── charset_windows.go │ │ ├── color.go │ │ ├── colorfit.go │ │ ├── console_stub.go │ │ ├── console_win.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── errors.go │ │ ├── event.go │ │ ├── focus.go │ │ ├── interrupt.go │ │ ├── key.go │ │ ├── mouse.go │ │ ├── nonblock_bsd.go │ │ ├── nonblock_unix.go │ │ ├── paste.go │ │ ├── resize.go │ │ ├── runes.go │ │ ├── screen.go │ │ ├── simulation.go │ │ ├── stdin_unix.go │ │ ├── style.go │ │ ├── terminfo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── TERMINALS.md │ │ ├── a │ │ │ ├── aixterm │ │ │ │ └── term.go │ │ │ ├── alacritty │ │ │ │ ├── direct.go │ │ │ │ └── term.go │ │ │ └── ansi │ │ │ │ └── term.go │ │ ├── b │ │ │ └── beterm │ │ │ │ └── term.go │ │ ├── base │ │ │ └── base.go │ │ ├── c │ │ │ └── cygwin │ │ │ │ └── term.go │ │ ├── d │ │ │ └── dtterm │ │ │ │ └── term.go │ │ ├── dynamic │ │ │ └── dynamic.go │ │ ├── e │ │ │ └── emacs │ │ │ │ └── term.go │ │ ├── extended │ │ │ └── extended.go │ │ ├── f │ │ │ └── foot │ │ │ │ └── foot.go │ │ ├── g │ │ │ └── gnome │ │ │ │ └── term.go │ │ ├── gen.sh │ │ ├── h │ │ │ └── hpterm │ │ │ │ └── term.go │ │ ├── k │ │ │ ├── konsole │ │ │ │ └── term.go │ │ │ └── kterm │ │ │ │ └── term.go │ │ ├── l │ │ │ └── linux │ │ │ │ └── term.go │ │ ├── models.txt │ │ ├── p │ │ │ └── pcansi │ │ │ │ └── term.go │ │ ├── r │ │ │ └── rxvt │ │ │ │ └── term.go │ │ ├── s │ │ │ ├── screen │ │ │ │ └── term.go │ │ │ ├── simpleterm │ │ │ │ └── term.go │ │ │ └── sun │ │ │ │ └── term.go │ │ ├── t │ │ │ └── tmux │ │ │ │ └── term.go │ │ ├── terminfo.go │ │ ├── v │ │ │ ├── vt100 │ │ │ │ └── term.go │ │ │ ├── vt102 │ │ │ │ └── term.go │ │ │ ├── vt220 │ │ │ │ └── term.go │ │ │ ├── vt320 │ │ │ │ └── term.go │ │ │ ├── vt400 │ │ │ │ └── term.go │ │ │ ├── vt420 │ │ │ │ └── term.go │ │ │ └── vt52 │ │ │ │ └── term.go │ │ ├── w │ │ │ ├── wy50 │ │ │ │ └── term.go │ │ │ ├── wy60 │ │ │ │ └── term.go │ │ │ └── wy99_ansi │ │ │ │ └── term.go │ │ └── x │ │ │ ├── xfce │ │ │ └── term.go │ │ │ ├── xterm │ │ │ ├── direct.go │ │ │ └── term.go │ │ │ ├── xterm_ghostty │ │ │ └── term.go │ │ │ └── xterm_kitty │ │ │ └── term.go │ │ ├── terms_default.go │ │ ├── terms_dynamic.go │ │ ├── terms_static.go │ │ ├── tscreen.go │ │ ├── tscreen_plan9.go │ │ ├── tscreen_stub.go │ │ ├── tscreen_unix.go │ │ ├── tty.go │ │ ├── tty_plan9.go │ │ ├── tty_unix.go │ │ └── wscreen.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── join_unwrap_1_20.go │ │ ├── join_unwrap_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-git │ ├── gcfg │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── doc.go │ │ ├── errors.go │ │ ├── read.go │ │ ├── scanner │ │ │ ├── errors.go │ │ │ └── scanner.go │ │ ├── set.go │ │ ├── token │ │ │ ├── position.go │ │ │ ├── serialize.go │ │ │ └── token.go │ │ └── types │ │ │ ├── bool.go │ │ │ ├── doc.go │ │ │ ├── enum.go │ │ │ ├── int.go │ │ │ └── scan.go │ └── go-billy │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── fs.go │ │ ├── helper │ │ ├── chroot │ │ │ └── chroot.go │ │ └── polyfill │ │ │ └── polyfill.go │ │ ├── memfs │ │ ├── memory.go │ │ └── storage.go │ │ ├── osfs │ │ ├── os.go │ │ ├── os_bound.go │ │ ├── os_chroot.go │ │ ├── os_js.go │ │ ├── os_options.go │ │ ├── os_plan9.go │ │ ├── os_posix.go │ │ ├── os_wasip1.go │ │ └── os_windows.go │ │ └── util │ │ ├── glob.go │ │ ├── util.go │ │ └── walk.go ├── go-logfmt │ └── logfmt │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── jsonstring.go ├── golang │ └── groupcache │ │ ├── LICENSE │ │ └── lru │ │ └── lru.go ├── gookit │ └── color │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── color.go │ │ ├── color_16.go │ │ ├── color_256.go │ │ ├── color_rgb.go │ │ ├── color_tag.go │ │ ├── convert.go │ │ ├── detect_env.go │ │ ├── detect_nonwin.go │ │ ├── detect_windows.go │ │ ├── printer.go │ │ ├── quickstart.go │ │ ├── style.go │ │ └── utils.go ├── integrii │ └── flaggy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── argumentParser.go │ │ ├── flag.go │ │ ├── help.go │ │ ├── helpValues.go │ │ ├── logo.png │ │ ├── main.go │ │ ├── parsedValue.go │ │ ├── parser.go │ │ ├── positionalValue.go │ │ └── subCommand.go ├── jbenet │ └── go-context │ │ ├── LICENSE │ │ └── io │ │ └── ctxio.go ├── jesseduffield │ ├── generics │ │ ├── LICENSE │ │ ├── maps │ │ │ └── maps.go │ │ ├── orderedset │ │ │ └── orderedset.go │ │ └── set │ │ │ └── set.go │ ├── go-git │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── COMPATIBILITY.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── EXTENDING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── blame.go │ │ │ ├── common.go │ │ │ ├── config │ │ │ ├── branch.go │ │ │ ├── config.go │ │ │ ├── modules.go │ │ │ ├── refspec.go │ │ │ └── url.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── path_util │ │ │ │ └── path_util.go │ │ │ ├── revision │ │ │ │ ├── parser.go │ │ │ │ ├── scanner.go │ │ │ │ └── token.go │ │ │ └── url │ │ │ │ └── url.go │ │ │ ├── object_walker.go │ │ │ ├── options.go │ │ │ ├── oss-fuzz.sh │ │ │ ├── plumbing │ │ │ ├── cache │ │ │ │ ├── buffer_lru.go │ │ │ │ ├── common.go │ │ │ │ └── object_lru.go │ │ │ ├── color │ │ │ │ └── color.go │ │ │ ├── error.go │ │ │ ├── filemode │ │ │ │ └── filemode.go │ │ │ ├── format │ │ │ │ ├── config │ │ │ │ │ ├── common.go │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── option.go │ │ │ │ │ └── section.go │ │ │ │ ├── diff │ │ │ │ │ ├── colorconfig.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── unified_encoder.go │ │ │ │ ├── gitignore │ │ │ │ │ ├── dir.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ └── pattern.go │ │ │ │ ├── idxfile │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── idxfile.go │ │ │ │ │ └── writer.go │ │ │ │ ├── index │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── index.go │ │ │ │ │ └── match.go │ │ │ │ ├── objfile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── reader.go │ │ │ │ │ └── writer.go │ │ │ │ ├── packfile │ │ │ │ │ ├── common.go │ │ │ │ │ ├── delta_index.go │ │ │ │ │ ├── delta_selector.go │ │ │ │ │ ├── diff_delta.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── fsobject.go │ │ │ │ │ ├── object_pack.go │ │ │ │ │ ├── packfile.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── patch_delta.go │ │ │ │ │ └── scanner.go │ │ │ │ └── pktline │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── scanner.go │ │ │ ├── hash.go │ │ │ ├── hash │ │ │ │ ├── hash.go │ │ │ │ ├── hash_sha1.go │ │ │ │ └── hash_sha256.go │ │ │ ├── memory.go │ │ │ ├── object.go │ │ │ ├── object │ │ │ │ ├── blob.go │ │ │ │ ├── change.go │ │ │ │ ├── change_adaptor.go │ │ │ │ ├── commit.go │ │ │ │ ├── commit_walker.go │ │ │ │ ├── commit_walker_bfs.go │ │ │ │ ├── commit_walker_bfs_filtered.go │ │ │ │ ├── commit_walker_ctime.go │ │ │ │ ├── commit_walker_limit.go │ │ │ │ ├── commit_walker_path.go │ │ │ │ ├── difftree.go │ │ │ │ ├── file.go │ │ │ │ ├── merge_base.go │ │ │ │ ├── object.go │ │ │ │ ├── patch.go │ │ │ │ ├── rename.go │ │ │ │ ├── signature.go │ │ │ │ ├── tag.go │ │ │ │ ├── tree.go │ │ │ │ └── treenoder.go │ │ │ ├── protocol │ │ │ │ └── packp │ │ │ │ │ ├── advrefs.go │ │ │ │ │ ├── advrefs_decode.go │ │ │ │ │ ├── advrefs_encode.go │ │ │ │ │ ├── capability │ │ │ │ │ ├── capability.go │ │ │ │ │ └── list.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── gitproto.go │ │ │ │ │ ├── report_status.go │ │ │ │ │ ├── shallowupd.go │ │ │ │ │ ├── sideband │ │ │ │ │ ├── common.go │ │ │ │ │ ├── demux.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── muxer.go │ │ │ │ │ ├── srvresp.go │ │ │ │ │ ├── ulreq.go │ │ │ │ │ ├── ulreq_decode.go │ │ │ │ │ ├── ulreq_encode.go │ │ │ │ │ ├── updreq.go │ │ │ │ │ ├── updreq_decode.go │ │ │ │ │ ├── updreq_encode.go │ │ │ │ │ ├── uppackreq.go │ │ │ │ │ └── uppackresp.go │ │ │ ├── reference.go │ │ │ ├── revision.go │ │ │ ├── revlist │ │ │ │ └── revlist.go │ │ │ ├── storer │ │ │ │ ├── doc.go │ │ │ │ ├── index.go │ │ │ │ ├── object.go │ │ │ │ ├── reference.go │ │ │ │ ├── shallow.go │ │ │ │ └── storer.go │ │ │ └── transport │ │ │ │ ├── client │ │ │ │ └── client.go │ │ │ │ ├── common.go │ │ │ │ ├── file │ │ │ │ ├── client.go │ │ │ │ └── server.go │ │ │ │ ├── git │ │ │ │ └── common.go │ │ │ │ ├── http │ │ │ │ ├── common.go │ │ │ │ ├── receive_pack.go │ │ │ │ ├── transport.go │ │ │ │ └── upload_pack.go │ │ │ │ ├── internal │ │ │ │ └── common │ │ │ │ │ ├── common.go │ │ │ │ │ ├── mocks.go │ │ │ │ │ └── server.go │ │ │ │ ├── server │ │ │ │ ├── loader.go │ │ │ │ └── server.go │ │ │ │ └── ssh │ │ │ │ ├── auth_method.go │ │ │ │ └── common.go │ │ │ ├── prune.go │ │ │ ├── remote.go │ │ │ ├── repository.go │ │ │ ├── signer.go │ │ │ ├── status.go │ │ │ ├── storage │ │ │ ├── filesystem │ │ │ │ ├── config.go │ │ │ │ ├── deltaobject.go │ │ │ │ ├── dotgit │ │ │ │ │ ├── dotgit.go │ │ │ │ │ ├── dotgit_rewrite_packed_refs.go │ │ │ │ │ ├── dotgit_setref.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── repository_filesystem.go │ │ │ │ │ └── writers.go │ │ │ │ ├── index.go │ │ │ │ ├── module.go │ │ │ │ ├── object.go │ │ │ │ ├── reference.go │ │ │ │ ├── shallow.go │ │ │ │ └── storage.go │ │ │ ├── memory │ │ │ │ └── storage.go │ │ │ └── storer.go │ │ │ ├── submodule.go │ │ │ ├── utils │ │ │ ├── binary │ │ │ │ ├── read.go │ │ │ │ └── write.go │ │ │ ├── diff │ │ │ │ └── diff.go │ │ │ ├── ioutil │ │ │ │ └── common.go │ │ │ ├── merkletrie │ │ │ │ ├── change.go │ │ │ │ ├── difftree.go │ │ │ │ ├── doc.go │ │ │ │ ├── doubleiter.go │ │ │ │ ├── filesystem │ │ │ │ │ └── node.go │ │ │ │ ├── index │ │ │ │ │ └── node.go │ │ │ │ ├── internal │ │ │ │ │ └── frame │ │ │ │ │ │ └── frame.go │ │ │ │ ├── iter.go │ │ │ │ └── noder │ │ │ │ │ ├── noder.go │ │ │ │ │ └── path.go │ │ │ ├── sync │ │ │ │ ├── bufio.go │ │ │ │ ├── bytes.go │ │ │ │ └── zlib.go │ │ │ └── trace │ │ │ │ └── trace.go │ │ │ ├── worktree.go │ │ │ ├── worktree_bsd.go │ │ │ ├── worktree_commit.go │ │ │ ├── worktree_js.go │ │ │ ├── worktree_linux.go │ │ │ ├── worktree_plan9.go │ │ │ ├── worktree_status.go │ │ │ ├── worktree_unix_other.go │ │ │ └── worktree_windows.go │ ├── gocui │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGES_tcell.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── attribute.go │ │ ├── doc.go │ │ ├── edit.go │ │ ├── escape.go │ │ ├── gui.go │ │ ├── gui_others.go │ │ ├── gui_windows.go │ │ ├── keybinding.go │ │ ├── loader.go │ │ ├── scrollbar.go │ │ ├── task.go │ │ ├── task_manager.go │ │ ├── tcell_driver.go │ │ ├── text_area.go │ │ └── view.go │ └── lazycore │ │ ├── LICENSE │ │ └── pkg │ │ ├── boxlayout │ │ └── boxlayout.go │ │ └── utils │ │ └── utils.go ├── kardianos │ └── osext │ │ ├── LICENSE │ │ ├── README.md │ │ ├── osext.go │ │ ├── osext_go18.go │ │ ├── osext_plan9.go │ │ ├── osext_procfs.go │ │ ├── osext_sysctl.go │ │ └── osext_windows.go ├── karimkhaleel │ └── jsonschema │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── COPYING │ │ ├── README.md │ │ ├── comment_extractor.go │ │ ├── id.go │ │ ├── reflect.go │ │ └── utils.go ├── kevinburke │ └── ssh_config │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS.txt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ └── validators.go ├── kr │ └── logfmt │ │ ├── .gitignore │ │ ├── Readme │ │ ├── decode.go │ │ ├── scanner.go │ │ └── unquote.go ├── kyokomi │ └── emoji │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── emoji.go │ │ ├── emoji_codemap.go │ │ └── wercker.yml ├── lucasb-eyer │ └── go-colorful │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorgens.go │ │ ├── colors.go │ │ ├── happy_palettegen.go │ │ ├── hexcolor.go │ │ ├── hsluv-snapshot-rev4.json │ │ ├── hsluv.go │ │ ├── rand.go │ │ ├── soft_palettegen.go │ │ ├── sort.go │ │ └── warm_palettegen.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchstat.txt │ │ ├── new.txt │ │ ├── old.txt │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── mgutz │ └── str │ │ ├── .gitignore │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── doc.go │ │ ├── funcsAO.go │ │ └── funcsPZ.go ├── mitchellh │ └── go-ps │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── process.go │ │ ├── process_darwin.go │ │ ├── process_freebsd.go │ │ ├── process_linux.go │ │ ├── process_solaris.go │ │ ├── process_unix.go │ │ └── process_windows.go ├── petermattis │ └── goid │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── goid.go │ │ ├── goid_gccgo.go │ │ ├── goid_go1.3.c │ │ ├── goid_go1.3.go │ │ ├── goid_go1.4.go │ │ ├── goid_go1.4.s │ │ ├── goid_go1.5.go │ │ ├── goid_go1.5.s │ │ ├── goid_slow.go │ │ ├── runtime_gccgo_go1.8.go │ │ ├── runtime_go1.23.go │ │ ├── runtime_go1.25.go │ │ ├── runtime_go1.5.go │ │ ├── runtime_go1.6.go │ │ └── runtime_go1.9.go ├── pjbgf │ └── sha1cd │ │ ├── Dockerfile.arm │ │ ├── Dockerfile.arm64 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── detection.go │ │ ├── internal │ │ └── const.go │ │ ├── sha1cd.go │ │ ├── sha1cdblock_amd64.go │ │ ├── sha1cdblock_amd64.s │ │ ├── sha1cdblock_generic.go │ │ ├── sha1cdblock_noasm.go │ │ └── ubc │ │ ├── const.go │ │ ├── ubc.go │ │ ├── ubc_amd64.go │ │ ├── ubc_amd64.s │ │ ├── ubc_generic.go │ │ └── ubc_noasm.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── sahilm │ └── fuzzy │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── fuzzy.go ├── samber │ └── lo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── channel.go │ │ ├── concurrency.go │ │ ├── condition.go │ │ ├── constraints.go │ │ ├── docker-compose.yml │ │ ├── errors.go │ │ ├── find.go │ │ ├── func.go │ │ ├── intersect.go │ │ ├── map.go │ │ ├── math.go │ │ ├── retry.go │ │ ├── slice.go │ │ ├── string.go │ │ ├── test.go │ │ ├── tuples.go │ │ ├── type_manipulation.go │ │ └── types.go ├── sanity-io │ └── litter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dump.go │ │ ├── pointers.go │ │ ├── print.go │ │ └── util.go ├── sasha-s │ └── go-deadlock │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── deadlock.go │ │ ├── deadlock_map.go │ │ ├── stacktraces.go │ │ ├── test.sh │ │ └── trylock.go ├── sergi │ └── go-diff │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── diffmatchpatch │ │ ├── diff.go │ │ ├── diffmatchpatch.go │ │ ├── match.go │ │ ├── mathutil.go │ │ ├── operation_string.go │ │ ├── patch.go │ │ └── stringutil.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── skeema │ └── knownhosts │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ └── knownhosts.go ├── spf13 │ └── afero │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ └── common │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ ├── dir.go │ │ ├── dirmap.go │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go ├── spkg │ └── bom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bom.go │ │ ├── discard_go14.go │ │ └── discard_go15.go ├── stefanhaller │ └── git-todo-parser │ │ ├── LICENSE │ │ └── todo │ │ ├── parse.go │ │ ├── todo.go │ │ └── write.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ └── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ ├── yaml_custom.go │ │ ├── yaml_default.go │ │ └── yaml_fail.go ├── wk8 │ └── go-ordered-map │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── json.go │ │ ├── orderedmap.go │ │ └── yaml.go ├── xanzy │ └── ssh-agent │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pageant_windows.go │ │ ├── sshagent.go │ │ └── sshagent_windows.go └── xo │ └── terminfo │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── caps.go │ ├── capvals.go │ ├── color.go │ ├── load.go │ ├── param.go │ ├── stack.go │ ├── terminfo.go │ └── util.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── argon2 │ │ ├── argon2.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2x.go │ │ ├── go125.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── curve25519 │ │ └── curve25519.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── sha3 │ │ ├── hashes.go │ │ ├── legacy_hash.go │ │ ├── legacy_keccakf.go │ │ └── shake.go │ └── ssh │ │ ├── agent │ │ ├── client.go │ │ ├── forward.go │ │ ├── keyring.go │ │ └── server.go │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal │ │ └── bcrypt_pbkdf │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── knownhosts │ │ └── knownhosts.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mlkem.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ └── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── internal │ │ └── socks │ │ │ ├── client.go │ │ │ └── socks.go │ └── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ └── errgroup.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── execabs │ │ ├── execabs.go │ │ ├── execabs_go118.go │ │ └── execabs_go119.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ └── text │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── encoding.go │ └── internal │ │ └── identifier │ │ ├── identifier.go │ │ └── mib.go │ ├── runes │ ├── cond.go │ └── runes.go │ ├── transform │ └── transform.go │ └── unicode │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables15.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── gopkg.in ├── ozeidan │ └── fuzzy-patricia.v3 │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── patricia │ │ ├── children.go │ │ └── patricia.go ├── warnings.v0 │ ├── LICENSE │ ├── README │ └── warnings.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.codespellrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.go] 4 | indent_style = tab 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/ISSUE_TEMPLATE/discussion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/check-required-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/check-required-label.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/close-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/close-issues.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.github/workflows/sponsors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.vscode/debugger_config.yml: -------------------------------------------------------------------------------- 1 | disableStartupPopups: true 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/README.md -------------------------------------------------------------------------------- /VISION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/VISION.md -------------------------------------------------------------------------------- /cmd/i18n/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/cmd/i18n/main.go -------------------------------------------------------------------------------- /cmd/integration_test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/cmd/integration_test/main.go -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/default.nix -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- 1 | This directory contains stuff for recording lazygit demos. 2 | 3 | -------------------------------------------------------------------------------- /demo/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/demo/config.yml -------------------------------------------------------------------------------- /demo/record_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/demo/record_demo.sh -------------------------------------------------------------------------------- /docs-master/Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Config.md -------------------------------------------------------------------------------- /docs-master/Custom_Command_Keybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Custom_Command_Keybindings.md -------------------------------------------------------------------------------- /docs-master/Custom_Pagers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Custom_Pagers.md -------------------------------------------------------------------------------- /docs-master/Fixup_Commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Fixup_Commits.md -------------------------------------------------------------------------------- /docs-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/README.md -------------------------------------------------------------------------------- /docs-master/Range_Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Range_Select.md -------------------------------------------------------------------------------- /docs-master/Searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Searching.md -------------------------------------------------------------------------------- /docs-master/Stacked_Branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Stacked_Branches.md -------------------------------------------------------------------------------- /docs-master/Undoing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/Undoing.md -------------------------------------------------------------------------------- /docs-master/dev/Busy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/dev/Busy.md -------------------------------------------------------------------------------- /docs-master/dev/Codebase_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/dev/Codebase_Guide.md -------------------------------------------------------------------------------- /docs-master/dev/Demo_Recordings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/dev/Demo_Recordings.md -------------------------------------------------------------------------------- /docs-master/dev/Integration_Tests.md: -------------------------------------------------------------------------------- 1 | see new docs [here](../../pkg/integration/README.md) 2 | -------------------------------------------------------------------------------- /docs-master/dev/Profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/dev/Profiling.md -------------------------------------------------------------------------------- /docs-master/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/dev/README.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_en.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_ja.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_ko.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_nl.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_pl.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_pt.md -------------------------------------------------------------------------------- /docs-master/keybindings/Keybindings_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs-master/keybindings/Keybindings_ru.md -------------------------------------------------------------------------------- /docs/Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Config.md -------------------------------------------------------------------------------- /docs/Custom_Command_Keybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Custom_Command_Keybindings.md -------------------------------------------------------------------------------- /docs/Custom_Pagers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Custom_Pagers.md -------------------------------------------------------------------------------- /docs/Fixup_Commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Fixup_Commits.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Range_Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Range_Select.md -------------------------------------------------------------------------------- /docs/Searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Searching.md -------------------------------------------------------------------------------- /docs/Stacked_Branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Stacked_Branches.md -------------------------------------------------------------------------------- /docs/Undoing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/Undoing.md -------------------------------------------------------------------------------- /docs/dev/Busy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/dev/Busy.md -------------------------------------------------------------------------------- /docs/dev/Codebase_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/dev/Codebase_Guide.md -------------------------------------------------------------------------------- /docs/dev/Demo_Recordings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/dev/Demo_Recordings.md -------------------------------------------------------------------------------- /docs/dev/Integration_Tests.md: -------------------------------------------------------------------------------- 1 | see new docs [here](../../pkg/integration/README.md) 2 | -------------------------------------------------------------------------------- /docs/dev/Profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/dev/Profiling.md -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/keybindings/Custom_Keybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Custom_Keybindings.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_en.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_ja.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_ko.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_nl.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_pl.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_pt.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_ru.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_zh-CN.md -------------------------------------------------------------------------------- /docs/keybindings/Keybindings_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/docs/keybindings/Keybindings_zh-TW.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/main.go -------------------------------------------------------------------------------- /pkg/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/app.go -------------------------------------------------------------------------------- /pkg/app/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/daemon/daemon.go -------------------------------------------------------------------------------- /pkg/app/daemon/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/daemon/rebase.go -------------------------------------------------------------------------------- /pkg/app/entry_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/entry_point.go -------------------------------------------------------------------------------- /pkg/app/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/errors.go -------------------------------------------------------------------------------- /pkg/app/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/app/types/types.go -------------------------------------------------------------------------------- /pkg/cheatsheet/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/cheatsheet/generate.go -------------------------------------------------------------------------------- /pkg/cheatsheet/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/cheatsheet/generate_test.go -------------------------------------------------------------------------------- /pkg/cheatsheet/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/cheatsheet/generator.go -------------------------------------------------------------------------------- /pkg/commands/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git.go -------------------------------------------------------------------------------- /pkg/commands/git_cmd_obj_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_cmd_obj_builder.go -------------------------------------------------------------------------------- /pkg/commands/git_cmd_obj_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_cmd_obj_runner.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/bisect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/bisect.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/bisect_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/bisect_info.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/blame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/blame.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/branch.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/branch_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/branch_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/branch_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/commit.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/commit_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/commit_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/commit_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/common.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/config.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/custom.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/deps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/deps_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/diff.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/file.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/file_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/file_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/file_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/flow.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/flow_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/main_branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/main_branches.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/patch.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/rebase.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/rebase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/rebase_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/remote.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/remote_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/remote_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/repo_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/repo_paths.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/stash.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/stash_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/stash_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/stash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/stash_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/status.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/submodule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/submodule.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/sync.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/sync_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/tag.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/tag_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/tag_loader.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/version.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/version_test.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/working_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/working_tree.go -------------------------------------------------------------------------------- /pkg/commands/git_commands/worktree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_commands/worktree.go -------------------------------------------------------------------------------- /pkg/commands/git_config/fake_git_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_config/fake_git_config.go -------------------------------------------------------------------------------- /pkg/commands/git_config/get_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/git_config/get_key.go -------------------------------------------------------------------------------- /pkg/commands/hosting_service/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/hosting_service/definitions.go -------------------------------------------------------------------------------- /pkg/commands/models/author.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/author.go -------------------------------------------------------------------------------- /pkg/commands/models/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/branch.go -------------------------------------------------------------------------------- /pkg/commands/models/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/commit.go -------------------------------------------------------------------------------- /pkg/commands/models/commit_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/commit_file.go -------------------------------------------------------------------------------- /pkg/commands/models/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/file.go -------------------------------------------------------------------------------- /pkg/commands/models/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/ref.go -------------------------------------------------------------------------------- /pkg/commands/models/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/remote.go -------------------------------------------------------------------------------- /pkg/commands/models/remote_branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/remote_branch.go -------------------------------------------------------------------------------- /pkg/commands/models/stash_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/stash_entry.go -------------------------------------------------------------------------------- /pkg/commands/models/submodule_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/submodule_config.go -------------------------------------------------------------------------------- /pkg/commands/models/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/tag.go -------------------------------------------------------------------------------- /pkg/commands/models/working_tree_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/working_tree_state.go -------------------------------------------------------------------------------- /pkg/commands/models/worktree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/models/worktree.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/cmd_obj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/cmd_obj.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/cmd_obj_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/cmd_obj_builder.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/cmd_obj_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/cmd_obj_runner.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/cmd_obj_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/cmd_obj_test.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/copy.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/dummies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/dummies.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/gui_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/gui_io.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/os.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/os_default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/os_default_test.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/os_test.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/os_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/os_windows.go -------------------------------------------------------------------------------- /pkg/commands/oscommands/os_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/oscommands/os_windows_test.go -------------------------------------------------------------------------------- /pkg/commands/patch/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/format.go -------------------------------------------------------------------------------- /pkg/commands/patch/hunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/hunk.go -------------------------------------------------------------------------------- /pkg/commands/patch/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/parse.go -------------------------------------------------------------------------------- /pkg/commands/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/patch.go -------------------------------------------------------------------------------- /pkg/commands/patch/patch_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/patch_builder.go -------------------------------------------------------------------------------- /pkg/commands/patch/patch_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/patch_line.go -------------------------------------------------------------------------------- /pkg/commands/patch/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/patch_test.go -------------------------------------------------------------------------------- /pkg/commands/patch/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/commands/patch/transform.go -------------------------------------------------------------------------------- /pkg/commands/testdata/a_dir/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/commands/testdata/a_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/common/common.go -------------------------------------------------------------------------------- /pkg/common/dummies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/common/dummies.go -------------------------------------------------------------------------------- /pkg/config/app_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/app_config.go -------------------------------------------------------------------------------- /pkg/config/app_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/app_config_test.go -------------------------------------------------------------------------------- /pkg/config/config_default_platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/config_default_platform.go -------------------------------------------------------------------------------- /pkg/config/config_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/config_linux.go -------------------------------------------------------------------------------- /pkg/config/config_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/config_windows.go -------------------------------------------------------------------------------- /pkg/config/dummies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/dummies.go -------------------------------------------------------------------------------- /pkg/config/editor_presets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/editor_presets.go -------------------------------------------------------------------------------- /pkg/config/editor_presets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/editor_presets_test.go -------------------------------------------------------------------------------- /pkg/config/keynames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/keynames.go -------------------------------------------------------------------------------- /pkg/config/pager_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/pager_config.go -------------------------------------------------------------------------------- /pkg/config/user_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/user_config.go -------------------------------------------------------------------------------- /pkg/config/user_config_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/user_config_validation.go -------------------------------------------------------------------------------- /pkg/config/user_config_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/config/user_config_validation_test.go -------------------------------------------------------------------------------- /pkg/constants/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/constants/links.go -------------------------------------------------------------------------------- /pkg/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/env/env.go -------------------------------------------------------------------------------- /pkg/fakes/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/fakes/log.go -------------------------------------------------------------------------------- /pkg/gui/background.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/background.go -------------------------------------------------------------------------------- /pkg/gui/command_log_panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/command_log_panel.go -------------------------------------------------------------------------------- /pkg/gui/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context.go -------------------------------------------------------------------------------- /pkg/gui/context/base_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/base_context.go -------------------------------------------------------------------------------- /pkg/gui/context/branches_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/branches_context.go -------------------------------------------------------------------------------- /pkg/gui/context/commit_files_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/commit_files_context.go -------------------------------------------------------------------------------- /pkg/gui/context/commit_message_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/commit_message_context.go -------------------------------------------------------------------------------- /pkg/gui/context/confirmation_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/confirmation_context.go -------------------------------------------------------------------------------- /pkg/gui/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/context.go -------------------------------------------------------------------------------- /pkg/gui/context/context_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/context_common.go -------------------------------------------------------------------------------- /pkg/gui/context/dynamic_title_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/dynamic_title_builder.go -------------------------------------------------------------------------------- /pkg/gui/context/filtered_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/filtered_list.go -------------------------------------------------------------------------------- /pkg/gui/context/filtered_list_view_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/filtered_list_view_model.go -------------------------------------------------------------------------------- /pkg/gui/context/history_trait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/history_trait.go -------------------------------------------------------------------------------- /pkg/gui/context/list_context_trait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/list_context_trait.go -------------------------------------------------------------------------------- /pkg/gui/context/list_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/list_renderer.go -------------------------------------------------------------------------------- /pkg/gui/context/list_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/list_renderer_test.go -------------------------------------------------------------------------------- /pkg/gui/context/list_view_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/list_view_model.go -------------------------------------------------------------------------------- /pkg/gui/context/local_commits_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/local_commits_context.go -------------------------------------------------------------------------------- /pkg/gui/context/main_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/main_context.go -------------------------------------------------------------------------------- /pkg/gui/context/menu_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/menu_context.go -------------------------------------------------------------------------------- /pkg/gui/context/merge_conflicts_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/merge_conflicts_context.go -------------------------------------------------------------------------------- /pkg/gui/context/parent_context_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/parent_context_mgr.go -------------------------------------------------------------------------------- /pkg/gui/context/patch_explorer_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/patch_explorer_context.go -------------------------------------------------------------------------------- /pkg/gui/context/prompt_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/prompt_context.go -------------------------------------------------------------------------------- /pkg/gui/context/reflog_commits_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/reflog_commits_context.go -------------------------------------------------------------------------------- /pkg/gui/context/remote_branches_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/remote_branches_context.go -------------------------------------------------------------------------------- /pkg/gui/context/remotes_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/remotes_context.go -------------------------------------------------------------------------------- /pkg/gui/context/search_trait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/search_trait.go -------------------------------------------------------------------------------- /pkg/gui/context/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/setup.go -------------------------------------------------------------------------------- /pkg/gui/context/simple_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/simple_context.go -------------------------------------------------------------------------------- /pkg/gui/context/stash_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/stash_context.go -------------------------------------------------------------------------------- /pkg/gui/context/sub_commits_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/sub_commits_context.go -------------------------------------------------------------------------------- /pkg/gui/context/submodules_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/submodules_context.go -------------------------------------------------------------------------------- /pkg/gui/context/suggestions_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/suggestions_context.go -------------------------------------------------------------------------------- /pkg/gui/context/tags_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/tags_context.go -------------------------------------------------------------------------------- /pkg/gui/context/traits/list_cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/traits/list_cursor.go -------------------------------------------------------------------------------- /pkg/gui/context/view_trait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/view_trait.go -------------------------------------------------------------------------------- /pkg/gui/context/working_tree_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/working_tree_context.go -------------------------------------------------------------------------------- /pkg/gui/context/worktrees_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context/worktrees_context.go -------------------------------------------------------------------------------- /pkg/gui/context_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/context_config.go -------------------------------------------------------------------------------- /pkg/gui/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers.go -------------------------------------------------------------------------------- /pkg/gui/controllers/attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/attach.go -------------------------------------------------------------------------------- /pkg/gui/controllers/base_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/base_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/bisect_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/bisect_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/branches_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/branches_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/common.go -------------------------------------------------------------------------------- /pkg/gui/controllers/diffing_menu_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/diffing_menu_action.go -------------------------------------------------------------------------------- /pkg/gui/controllers/files_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/files_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/filter_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/filter_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/git_flow_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/git_flow_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/global_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/global_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/amend_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/amend_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/diff_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/diff_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/files_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/files_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/fixup_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/fixup_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/gpg_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/gpg_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/helpers.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/host_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/host_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/mode_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/mode_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/refs_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/refs_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/repos_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/repos_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/snake_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/snake_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/tags_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/tags_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/helpers/view_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/helpers/view_helper.go -------------------------------------------------------------------------------- /pkg/gui/controllers/list_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/list_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/main_view_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/main_view_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/menu_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/menu_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/options_menu_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/options_menu_action.go -------------------------------------------------------------------------------- /pkg/gui/controllers/prompt_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/prompt_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/quit_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/quit_actions.go -------------------------------------------------------------------------------- /pkg/gui/controllers/remotes_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/remotes_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/screen_mode_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/screen_mode_actions.go -------------------------------------------------------------------------------- /pkg/gui/controllers/scroll_off_margin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/scroll_off_margin.go -------------------------------------------------------------------------------- /pkg/gui/controllers/search_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/search_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/shell_command_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/shell_command_action.go -------------------------------------------------------------------------------- /pkg/gui/controllers/snake_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/snake_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/staging_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/staging_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/stash_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/stash_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/status_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/status_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/sync_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/sync_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/tags_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/tags_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/undo_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/undo_controller.go -------------------------------------------------------------------------------- /pkg/gui/controllers/worktrees_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/controllers/worktrees_controller.go -------------------------------------------------------------------------------- /pkg/gui/dummies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/dummies.go -------------------------------------------------------------------------------- /pkg/gui/editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/editors.go -------------------------------------------------------------------------------- /pkg/gui/extras_panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/extras_panel.go -------------------------------------------------------------------------------- /pkg/gui/filetree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/README.md -------------------------------------------------------------------------------- /pkg/gui/filetree/build_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/build_tree.go -------------------------------------------------------------------------------- /pkg/gui/filetree/build_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/build_tree_test.go -------------------------------------------------------------------------------- /pkg/gui/filetree/collapsed_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/collapsed_paths.go -------------------------------------------------------------------------------- /pkg/gui/filetree/commit_file_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/commit_file_node.go -------------------------------------------------------------------------------- /pkg/gui/filetree/commit_file_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/commit_file_tree.go -------------------------------------------------------------------------------- /pkg/gui/filetree/file_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/file_node.go -------------------------------------------------------------------------------- /pkg/gui/filetree/file_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/file_node_test.go -------------------------------------------------------------------------------- /pkg/gui/filetree/file_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/file_tree.go -------------------------------------------------------------------------------- /pkg/gui/filetree/file_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/file_tree_test.go -------------------------------------------------------------------------------- /pkg/gui/filetree/file_tree_view_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/file_tree_view_model.go -------------------------------------------------------------------------------- /pkg/gui/filetree/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/filetree/node.go -------------------------------------------------------------------------------- /pkg/gui/global_handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/global_handlers.go -------------------------------------------------------------------------------- /pkg/gui/gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/gui.go -------------------------------------------------------------------------------- /pkg/gui/gui_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/gui_common.go -------------------------------------------------------------------------------- /pkg/gui/gui_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/gui_driver.go -------------------------------------------------------------------------------- /pkg/gui/information_panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/information_panel.go -------------------------------------------------------------------------------- /pkg/gui/keybindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/keybindings.go -------------------------------------------------------------------------------- /pkg/gui/keybindings/keybindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/keybindings/keybindings.go -------------------------------------------------------------------------------- /pkg/gui/layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/layout.go -------------------------------------------------------------------------------- /pkg/gui/main_panels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/main_panels.go -------------------------------------------------------------------------------- /pkg/gui/menu_panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/menu_panel.go -------------------------------------------------------------------------------- /pkg/gui/mergeconflicts/find_conflicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/mergeconflicts/find_conflicts.go -------------------------------------------------------------------------------- /pkg/gui/mergeconflicts/merge_conflict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/mergeconflicts/merge_conflict.go -------------------------------------------------------------------------------- /pkg/gui/mergeconflicts/rendering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/mergeconflicts/rendering.go -------------------------------------------------------------------------------- /pkg/gui/mergeconflicts/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/mergeconflicts/state.go -------------------------------------------------------------------------------- /pkg/gui/mergeconflicts/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/mergeconflicts/state_test.go -------------------------------------------------------------------------------- /pkg/gui/modes/diffing/diffing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/modes/diffing/diffing.go -------------------------------------------------------------------------------- /pkg/gui/modes/filtering/filtering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/modes/filtering/filtering.go -------------------------------------------------------------------------------- /pkg/gui/options_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/options_map.go -------------------------------------------------------------------------------- /pkg/gui/patch_exploring/focus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/patch_exploring/focus.go -------------------------------------------------------------------------------- /pkg/gui/patch_exploring/focus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/patch_exploring/focus_test.go -------------------------------------------------------------------------------- /pkg/gui/patch_exploring/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/patch_exploring/state.go -------------------------------------------------------------------------------- /pkg/gui/popup/popup_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/popup/popup_handler.go -------------------------------------------------------------------------------- /pkg/gui/presentation/authors/authors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/authors/authors.go -------------------------------------------------------------------------------- /pkg/gui/presentation/branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/branches.go -------------------------------------------------------------------------------- /pkg/gui/presentation/branches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/branches_test.go -------------------------------------------------------------------------------- /pkg/gui/presentation/commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/commits.go -------------------------------------------------------------------------------- /pkg/gui/presentation/commits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/commits_test.go -------------------------------------------------------------------------------- /pkg/gui/presentation/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/files.go -------------------------------------------------------------------------------- /pkg/gui/presentation/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/files_test.go -------------------------------------------------------------------------------- /pkg/gui/presentation/graph/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/graph/cell.go -------------------------------------------------------------------------------- /pkg/gui/presentation/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/graph/graph.go -------------------------------------------------------------------------------- /pkg/gui/presentation/graph/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/graph/graph_test.go -------------------------------------------------------------------------------- /pkg/gui/presentation/icons/file_icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/icons/file_icons.go -------------------------------------------------------------------------------- /pkg/gui/presentation/icons/git_icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/icons/git_icons.go -------------------------------------------------------------------------------- /pkg/gui/presentation/icons/icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/icons/icons.go -------------------------------------------------------------------------------- /pkg/gui/presentation/item_operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/item_operations.go -------------------------------------------------------------------------------- /pkg/gui/presentation/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/loader.go -------------------------------------------------------------------------------- /pkg/gui/presentation/reflog_commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/reflog_commits.go -------------------------------------------------------------------------------- /pkg/gui/presentation/remote_branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/remote_branches.go -------------------------------------------------------------------------------- /pkg/gui/presentation/remotes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/remotes.go -------------------------------------------------------------------------------- /pkg/gui/presentation/stash_entries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/stash_entries.go -------------------------------------------------------------------------------- /pkg/gui/presentation/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/status.go -------------------------------------------------------------------------------- /pkg/gui/presentation/submodules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/submodules.go -------------------------------------------------------------------------------- /pkg/gui/presentation/suggestions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/suggestions.go -------------------------------------------------------------------------------- /pkg/gui/presentation/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/tags.go -------------------------------------------------------------------------------- /pkg/gui/presentation/worktrees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/presentation/worktrees.go -------------------------------------------------------------------------------- /pkg/gui/pty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/pty.go -------------------------------------------------------------------------------- /pkg/gui/pty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/pty_windows.go -------------------------------------------------------------------------------- /pkg/gui/recent_repos_panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/recent_repos_panel.go -------------------------------------------------------------------------------- /pkg/gui/services/custom_commands/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/services/custom_commands/client.go -------------------------------------------------------------------------------- /pkg/gui/services/custom_commands/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/services/custom_commands/models.go -------------------------------------------------------------------------------- /pkg/gui/status/status_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/status/status_manager.go -------------------------------------------------------------------------------- /pkg/gui/style/basic_styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/basic_styles.go -------------------------------------------------------------------------------- /pkg/gui/style/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/color.go -------------------------------------------------------------------------------- /pkg/gui/style/decoration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/decoration.go -------------------------------------------------------------------------------- /pkg/gui/style/hyperlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/hyperlink.go -------------------------------------------------------------------------------- /pkg/gui/style/style_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/style_test.go -------------------------------------------------------------------------------- /pkg/gui/style/text_style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/style/text_style.go -------------------------------------------------------------------------------- /pkg/gui/tasks_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/tasks_adapter.go -------------------------------------------------------------------------------- /pkg/gui/test_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/test_mode.go -------------------------------------------------------------------------------- /pkg/gui/types/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/common.go -------------------------------------------------------------------------------- /pkg/gui/types/common_commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/common_commands.go -------------------------------------------------------------------------------- /pkg/gui/types/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/context.go -------------------------------------------------------------------------------- /pkg/gui/types/keybindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/keybindings.go -------------------------------------------------------------------------------- /pkg/gui/types/modes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/modes.go -------------------------------------------------------------------------------- /pkg/gui/types/ref_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/ref_range.go -------------------------------------------------------------------------------- /pkg/gui/types/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/refresh.go -------------------------------------------------------------------------------- /pkg/gui/types/rendering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/rendering.go -------------------------------------------------------------------------------- /pkg/gui/types/search_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/search_state.go -------------------------------------------------------------------------------- /pkg/gui/types/suggestion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/suggestion.go -------------------------------------------------------------------------------- /pkg/gui/types/version_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/version_number.go -------------------------------------------------------------------------------- /pkg/gui/types/version_number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/version_number_test.go -------------------------------------------------------------------------------- /pkg/gui/types/views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/types/views.go -------------------------------------------------------------------------------- /pkg/gui/view_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/view_helpers.go -------------------------------------------------------------------------------- /pkg/gui/views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/gui/views.go -------------------------------------------------------------------------------- /pkg/i18n/english.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/english.go -------------------------------------------------------------------------------- /pkg/i18n/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/i18n.go -------------------------------------------------------------------------------- /pkg/i18n/i18n_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/i18n_test.go -------------------------------------------------------------------------------- /pkg/i18n/translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/README.md -------------------------------------------------------------------------------- /pkg/i18n/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/ja.json -------------------------------------------------------------------------------- /pkg/i18n/translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/ko.json -------------------------------------------------------------------------------- /pkg/i18n/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/nl.json -------------------------------------------------------------------------------- /pkg/i18n/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/pl.json -------------------------------------------------------------------------------- /pkg/i18n/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/pt.json -------------------------------------------------------------------------------- /pkg/i18n/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/ru.json -------------------------------------------------------------------------------- /pkg/i18n/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/zh-CN.json -------------------------------------------------------------------------------- /pkg/i18n/translations/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/i18n/translations/zh-TW.json -------------------------------------------------------------------------------- /pkg/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/README.md -------------------------------------------------------------------------------- /pkg/integration/clients/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/clients/cli.go -------------------------------------------------------------------------------- /pkg/integration/clients/go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/clients/go_test.go -------------------------------------------------------------------------------- /pkg/integration/clients/injector/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/clients/injector/main.go -------------------------------------------------------------------------------- /pkg/integration/clients/tui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/clients/tui.go -------------------------------------------------------------------------------- /pkg/integration/components/alert_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/alert_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/common.go -------------------------------------------------------------------------------- /pkg/integration/components/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/env.go -------------------------------------------------------------------------------- /pkg/integration/components/file_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/file_system.go -------------------------------------------------------------------------------- /pkg/integration/components/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/git.go -------------------------------------------------------------------------------- /pkg/integration/components/int_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/int_matcher.go -------------------------------------------------------------------------------- /pkg/integration/components/matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/matcher.go -------------------------------------------------------------------------------- /pkg/integration/components/menu_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/menu_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/paths.go -------------------------------------------------------------------------------- /pkg/integration/components/popup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/popup.go -------------------------------------------------------------------------------- /pkg/integration/components/prompt_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/prompt_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/random.go -------------------------------------------------------------------------------- /pkg/integration/components/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/runner.go -------------------------------------------------------------------------------- /pkg/integration/components/search_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/search_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/shell.go -------------------------------------------------------------------------------- /pkg/integration/components/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/test.go -------------------------------------------------------------------------------- /pkg/integration/components/test_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/test_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/test_test.go -------------------------------------------------------------------------------- /pkg/integration/components/text_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/text_matcher.go -------------------------------------------------------------------------------- /pkg/integration/components/view_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/view_driver.go -------------------------------------------------------------------------------- /pkg/integration/components/views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/components/views.go -------------------------------------------------------------------------------- /pkg/integration/tests/bisect/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/bisect/basic.go -------------------------------------------------------------------------------- /pkg/integration/tests/bisect/skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/bisect/skip.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/create_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/create_tag.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/delete.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/rebase.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/rename.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/reset.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/branch/suggestions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/branch/suggestions.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/amend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/amend.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/checkout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/checkout.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/commit.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/create_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/create_tag.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/highlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/highlight.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/history.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/new_branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/new_branch.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/revert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/revert.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/reword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/reword.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/search.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/set_author.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/set_author.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/staged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/staged.go -------------------------------------------------------------------------------- /pkg/integration/tests/commit/unstaged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/commit/unstaged.go -------------------------------------------------------------------------------- /pkg/integration/tests/conflicts/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/conflicts/filter.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/bisect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/bisect.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/cherry_pick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/cherry_pick.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/commit_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/commit_graph.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/custom_patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/custom_patch.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/diff_commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/diff_commits.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/filter.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/rebase_onto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/rebase_onto.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/stage_lines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/stage_lines.go -------------------------------------------------------------------------------- /pkg/integration/tests/demo/undo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/demo/undo.go -------------------------------------------------------------------------------- /pkg/integration/tests/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/diff/diff.go -------------------------------------------------------------------------------- /pkg/integration/tests/diff/diff_commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/diff/diff_commits.go -------------------------------------------------------------------------------- /pkg/integration/tests/file/copy_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/file/copy_menu.go -------------------------------------------------------------------------------- /pkg/integration/tests/file/gitignore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/file/gitignore.go -------------------------------------------------------------------------------- /pkg/integration/tests/file/renamed_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/file/renamed_files.go -------------------------------------------------------------------------------- /pkg/integration/tests/file/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/file/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/misc/initial_open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/misc/initial_open.go -------------------------------------------------------------------------------- /pkg/integration/tests/reflog/checkout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/reflog/checkout.go -------------------------------------------------------------------------------- /pkg/integration/tests/reflog/cherry_pick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/reflog/cherry_pick.go -------------------------------------------------------------------------------- /pkg/integration/tests/reflog/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/reflog/patch.go -------------------------------------------------------------------------------- /pkg/integration/tests/reflog/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/reflog/reset.go -------------------------------------------------------------------------------- /pkg/integration/tests/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/shared/README.md -------------------------------------------------------------------------------- /pkg/integration/tests/shared/conflicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/shared/conflicts.go -------------------------------------------------------------------------------- /pkg/integration/tests/staging/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/staging/search.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/apply.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/apply_patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/apply_patch.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/drop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/drop.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/pop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/pop.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/rename.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/stash.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/stash_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/stash_all.go -------------------------------------------------------------------------------- /pkg/integration/tests/stash/stash_staged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/stash/stash_staged.go -------------------------------------------------------------------------------- /pkg/integration/tests/status/log_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/status/log_cmd.go -------------------------------------------------------------------------------- /pkg/integration/tests/submodule/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/submodule/add.go -------------------------------------------------------------------------------- /pkg/integration/tests/submodule/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/submodule/enter.go -------------------------------------------------------------------------------- /pkg/integration/tests/submodule/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/submodule/remove.go -------------------------------------------------------------------------------- /pkg/integration/tests/submodule/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/submodule/reset.go -------------------------------------------------------------------------------- /pkg/integration/tests/submodule/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/submodule/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/fetch_prune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/fetch_prune.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/force_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/force_push.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/pull.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/pull_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/pull_merge.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/pull_rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/pull_rebase.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/push.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/push_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/push_tag.go -------------------------------------------------------------------------------- /pkg/integration/tests/sync/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/sync/shared.go -------------------------------------------------------------------------------- /pkg/integration/tests/tag/checkout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/tag/checkout.go -------------------------------------------------------------------------------- /pkg/integration/tests/tag/crud_annotated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/tag/crud_annotated.go -------------------------------------------------------------------------------- /pkg/integration/tests/tag/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/tag/reset.go -------------------------------------------------------------------------------- /pkg/integration/tests/test_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/test_list.go -------------------------------------------------------------------------------- /pkg/integration/tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/tests.go -------------------------------------------------------------------------------- /pkg/integration/tests/ui/accordion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/ui/accordion.go -------------------------------------------------------------------------------- /pkg/integration/tests/ui/empty_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/ui/empty_menu.go -------------------------------------------------------------------------------- /pkg/integration/tests/ui/range_select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/ui/range_select.go -------------------------------------------------------------------------------- /pkg/integration/tests/undo/undo_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/undo/undo_commit.go -------------------------------------------------------------------------------- /pkg/integration/tests/undo/undo_drop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/undo/undo_drop.go -------------------------------------------------------------------------------- /pkg/integration/tests/worktree/bare_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/worktree/bare_repo.go -------------------------------------------------------------------------------- /pkg/integration/tests/worktree/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/tests/worktree/crud.go -------------------------------------------------------------------------------- /pkg/integration/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/integration/types/types.go -------------------------------------------------------------------------------- /pkg/jsonschema/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/jsonschema/generate.go -------------------------------------------------------------------------------- /pkg/jsonschema/generate_config_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/jsonschema/generate_config_docs.go -------------------------------------------------------------------------------- /pkg/jsonschema/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/jsonschema/generator.go -------------------------------------------------------------------------------- /pkg/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/logs/logs.go -------------------------------------------------------------------------------- /pkg/logs/tail/logs_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/logs/tail/logs_default.go -------------------------------------------------------------------------------- /pkg/logs/tail/logs_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/logs/tail/logs_windows.go -------------------------------------------------------------------------------- /pkg/logs/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/logs/tail/tail.go -------------------------------------------------------------------------------- /pkg/snake/snake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/snake/snake.go -------------------------------------------------------------------------------- /pkg/snake/snake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/snake/snake_test.go -------------------------------------------------------------------------------- /pkg/tasks/async_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/tasks/async_handler.go -------------------------------------------------------------------------------- /pkg/tasks/async_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/tasks/async_handler_test.go -------------------------------------------------------------------------------- /pkg/tasks/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/tasks/tasks.go -------------------------------------------------------------------------------- /pkg/tasks/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/tasks/tasks_test.go -------------------------------------------------------------------------------- /pkg/theme/gocui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/theme/gocui.go -------------------------------------------------------------------------------- /pkg/theme/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/theme/style.go -------------------------------------------------------------------------------- /pkg/theme/style_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/theme/style_test.go -------------------------------------------------------------------------------- /pkg/theme/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/theme/theme.go -------------------------------------------------------------------------------- /pkg/updates/updates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/updates/updates.go -------------------------------------------------------------------------------- /pkg/utils/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/color.go -------------------------------------------------------------------------------- /pkg/utils/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/color_test.go -------------------------------------------------------------------------------- /pkg/utils/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/date.go -------------------------------------------------------------------------------- /pkg/utils/date_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/date_test.go -------------------------------------------------------------------------------- /pkg/utils/dummies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/dummies.go -------------------------------------------------------------------------------- /pkg/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/errors.go -------------------------------------------------------------------------------- /pkg/utils/formatting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/formatting.go -------------------------------------------------------------------------------- /pkg/utils/formatting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/formatting_test.go -------------------------------------------------------------------------------- /pkg/utils/history_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/history_buffer.go -------------------------------------------------------------------------------- /pkg/utils/history_buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/history_buffer_test.go -------------------------------------------------------------------------------- /pkg/utils/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/io.go -------------------------------------------------------------------------------- /pkg/utils/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/io_test.go -------------------------------------------------------------------------------- /pkg/utils/lines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/lines.go -------------------------------------------------------------------------------- /pkg/utils/lines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/lines_test.go -------------------------------------------------------------------------------- /pkg/utils/once_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/once_writer.go -------------------------------------------------------------------------------- /pkg/utils/once_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/once_writer_test.go -------------------------------------------------------------------------------- /pkg/utils/rebase_todo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/rebase_todo.go -------------------------------------------------------------------------------- /pkg/utils/rebase_todo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/rebase_todo_test.go -------------------------------------------------------------------------------- /pkg/utils/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/regexp.go -------------------------------------------------------------------------------- /pkg/utils/regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/regexp_test.go -------------------------------------------------------------------------------- /pkg/utils/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/search.go -------------------------------------------------------------------------------- /pkg/utils/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/search_test.go -------------------------------------------------------------------------------- /pkg/utils/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/slice.go -------------------------------------------------------------------------------- /pkg/utils/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/slice_test.go -------------------------------------------------------------------------------- /pkg/utils/string_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/string_pool.go -------------------------------------------------------------------------------- /pkg/utils/string_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/string_stack.go -------------------------------------------------------------------------------- /pkg/utils/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/template.go -------------------------------------------------------------------------------- /pkg/utils/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/template_test.go -------------------------------------------------------------------------------- /pkg/utils/thread_safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/thread_safe_map.go -------------------------------------------------------------------------------- /pkg/utils/thread_safe_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/thread_safe_map_test.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /pkg/utils/yaml_utils/yaml_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/yaml_utils/yaml_utils.go -------------------------------------------------------------------------------- /pkg/utils/yaml_utils/yaml_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/pkg/utils/yaml_utils/yaml_utils_test.go -------------------------------------------------------------------------------- /schema-master/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/schema-master/config.json -------------------------------------------------------------------------------- /schema/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/schema/config.json -------------------------------------------------------------------------------- /scripts/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/bisect.sh -------------------------------------------------------------------------------- /scripts/bump_gocui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/bump_gocui.sh -------------------------------------------------------------------------------- /scripts/bump_lazycore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/bump_lazycore.sh -------------------------------------------------------------------------------- /scripts/bump_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/bump_modules.sh -------------------------------------------------------------------------------- /scripts/check_filenames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/check_filenames.sh -------------------------------------------------------------------------------- /scripts/check_for_fixups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/check_for_fixups.sh -------------------------------------------------------------------------------- /scripts/golangci-lint-shim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/golangci-lint-shim.sh -------------------------------------------------------------------------------- /scripts/record_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/record_demo.sh -------------------------------------------------------------------------------- /scripts/run_integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/run_integration_tests.sh -------------------------------------------------------------------------------- /scripts/update_docs_for_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/update_docs_for_release.sh -------------------------------------------------------------------------------- /scripts/update_language_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/scripts/update_language_files.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/shell.nix -------------------------------------------------------------------------------- /test/.gitconfig: -------------------------------------------------------------------------------- 1 | global_git_config -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/test/README.md -------------------------------------------------------------------------------- /test/default_test_config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/test/default_test_config/config.yml -------------------------------------------------------------------------------- /test/files/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/test/files/pre-push -------------------------------------------------------------------------------- /test/global_git_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/test/global_git_config -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/.deepsource.toml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/SECURITY.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/Microsoft/go-winio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/README.md -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/base_dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/base_dirs.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/codecov.yml -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/paths_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/paths_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/paths_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/paths_plan9.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/paths_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/paths_unix.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/paths_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/paths_windows.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/user_dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/user_dirs.go -------------------------------------------------------------------------------- /vendor/github.com/adrg/xdg/xdg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/adrg/xdg/xdg.go -------------------------------------------------------------------------------- /vendor/github.com/atotto/clipboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/atotto/clipboard/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aybabtme/humanlog/.gitignore: -------------------------------------------------------------------------------- 1 | *.ignore 2 | dist 3 | -------------------------------------------------------------------------------- /vendor/github.com/buger/jsonparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/buger/jsonparser/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/buger/jsonparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/buger/jsonparser/Makefile -------------------------------------------------------------------------------- /vendor/github.com/buger/jsonparser/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/buger/jsonparser/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/buger/jsonparser/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/buger/jsonparser/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/circl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/cloudflare/circl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/README.md -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/ioctl.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ioctl_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/ioctl_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/mktypes.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/mktypes.bash -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/pty_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/pty_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/pty_linux.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/pty_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/pty_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/run.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/util.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ztypes_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/ztypes_386.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ztypes_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/creack/pty/ztypes_arm.go -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/emirpasic/gods/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/encoding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/encoding/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gdamore/encoding/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/encoding/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/encoding/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/encoding/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/encoding/utf8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/encoding/utf8.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/attr.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/cell.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/color.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/event.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/focus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/focus.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/key.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/mouse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gdamore/tcell/v2/mouse.go -------------------------------------------------------------------------------- /vendor/github.com/gdamore/tcell/v2/terminfo/.gitignore: -------------------------------------------------------------------------------- 1 | mkinfo 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/Makefile -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/README -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/read.go -------------------------------------------------------------------------------- /vendor/github.com/go-git/gcfg/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/go-git/gcfg/set.go -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/gookit/color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gookit/color/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gookit/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gookit/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/gookit/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gookit/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/gookit/color/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gookit/color/style.go -------------------------------------------------------------------------------- /vendor/github.com/gookit/color/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/gookit/color/utils.go -------------------------------------------------------------------------------- /vendor/github.com/jesseduffield/gocui/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/karimkhaleel/jsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/dos-lines eol=crlf 2 | -------------------------------------------------------------------------------- /vendor/github.com/kevinburke/ssh_config/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.swp 3 | *.prof 4 | -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/kr/logfmt/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/kr/logfmt/decode.go -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/kr/logfmt/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/kr/logfmt/unquote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/kr/logfmt/unquote.go -------------------------------------------------------------------------------- /vendor/github.com/kyokomi/emoji/v2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | emoji.iml 3 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/CREDITS -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/README.md -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/funcsAO.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/funcsAO.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/str/funcsPZ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/mgutz/str/funcsPZ.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-ps/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-ps/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2.1 5 | -------------------------------------------------------------------------------- /vendor/github.com/petermattis/goid/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.test 3 | .*.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /vendor/github.com/pjbgf/sha1cd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/pjbgf/sha1cd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pjbgf/sha1cd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/pjbgf/sha1cd/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pjbgf/sha1cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/pjbgf/sha1cd/README.md -------------------------------------------------------------------------------- /vendor/github.com/pjbgf/sha1cd/sha1cd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/pjbgf/sha1cd/sha1cd.go -------------------------------------------------------------------------------- /vendor/github.com/sahilm/fuzzy/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/sahilm/fuzzy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sahilm/fuzzy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sahilm/fuzzy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sahilm/fuzzy/Makefile -------------------------------------------------------------------------------- /vendor/github.com/sahilm/fuzzy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sahilm/fuzzy/README.md -------------------------------------------------------------------------------- /vendor/github.com/sahilm/fuzzy/fuzzy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sahilm/fuzzy/fuzzy.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/Makefile -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/README.md -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/channel.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/condition.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/errors.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/find.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/func.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/intersect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/intersect.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/map.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/math.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/retry.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/slice.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/string.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/test.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/tuples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/tuples.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/samber/lo/types.go -------------------------------------------------------------------------------- /vendor/github.com/sanity-io/litter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sergi/go-diff/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spkg/bom/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /vendor/github.com/spkg/bom/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spkg/bom/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spkg/bom/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spkg/bom/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/spkg/bom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spkg/bom/README.md -------------------------------------------------------------------------------- /vendor/github.com/spkg/bom/bom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/spkg/bom/bom.go -------------------------------------------------------------------------------- /vendor/github.com/wk8/go-ordered-map/v2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/README.md -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/caps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/caps.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/capvals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/capvals.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/color.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/load.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/param.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/stack.go -------------------------------------------------------------------------------- /vendor/github.com/xo/terminfo/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/github.com/xo/terminfo/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mlkem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/mlkem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/exp/slices/slices.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/warnings.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/warnings.v0/README -------------------------------------------------------------------------------- /vendor/gopkg.in/warnings.v0/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/warnings.v0/warnings.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesseduffield/lazygit/HEAD/vendor/modules.txt --------------------------------------------------------------------------------