thefuck-leeguoo 3.41__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- thefuck/__init__.py +0 -0
- thefuck/ai.py +765 -0
- thefuck/argument_parser.py +96 -0
- thefuck/conf.py +141 -0
- thefuck/const.py +111 -0
- thefuck/corrector.py +92 -0
- thefuck/entrypoints/__init__.py +0 -0
- thefuck/entrypoints/alias.py +28 -0
- thefuck/entrypoints/fix_command.py +105 -0
- thefuck/entrypoints/main.py +50 -0
- thefuck/entrypoints/not_configured.py +201 -0
- thefuck/entrypoints/setup.py +227 -0
- thefuck/entrypoints/shell_logger.py +79 -0
- thefuck/exceptions.py +10 -0
- thefuck/logs.py +255 -0
- thefuck/output_readers/__init__.py +20 -0
- thefuck/output_readers/read_log.py +108 -0
- thefuck/output_readers/rerun.py +72 -0
- thefuck/output_readers/shell_logger.py +60 -0
- thefuck/rules/__init__.py +0 -0
- thefuck/rules/adb_unknown_command.py +54 -0
- thefuck/rules/ag_literal.py +10 -0
- thefuck/rules/apt_get.py +50 -0
- thefuck/rules/apt_get_search.py +14 -0
- thefuck/rules/apt_invalid_operation.py +63 -0
- thefuck/rules/apt_list_upgradable.py +16 -0
- thefuck/rules/apt_upgrade.py +16 -0
- thefuck/rules/aws_cli.py +17 -0
- thefuck/rules/az_cli.py +17 -0
- thefuck/rules/brew_cask_dependency.py +33 -0
- thefuck/rules/brew_install.py +24 -0
- thefuck/rules/brew_link.py +15 -0
- thefuck/rules/brew_reinstall.py +19 -0
- thefuck/rules/brew_uninstall.py +14 -0
- thefuck/rules/brew_unknown_command.py +82 -0
- thefuck/rules/brew_update_formula.py +12 -0
- thefuck/rules/cargo.py +6 -0
- thefuck/rules/cargo_no_command.py +15 -0
- thefuck/rules/cat_dir.py +14 -0
- thefuck/rules/cd_correction.py +61 -0
- thefuck/rules/cd_cs.py +21 -0
- thefuck/rules/cd_mkdir.py +21 -0
- thefuck/rules/cd_parent.py +16 -0
- thefuck/rules/chmod_x.py +15 -0
- thefuck/rules/choco_install.py +25 -0
- thefuck/rules/composer_not_command.py +22 -0
- thefuck/rules/conda_mistype.py +17 -0
- thefuck/rules/cp_create_destination.py +15 -0
- thefuck/rules/cp_omitting_directory.py +15 -0
- thefuck/rules/cpp11.py +12 -0
- thefuck/rules/dirty_untar.py +53 -0
- thefuck/rules/dirty_unzip.py +60 -0
- thefuck/rules/django_south_ghost.py +8 -0
- thefuck/rules/django_south_merge.py +8 -0
- thefuck/rules/dnf_no_such_command.py +37 -0
- thefuck/rules/docker_image_being_used_by_container.py +20 -0
- thefuck/rules/docker_login.py +13 -0
- thefuck/rules/docker_not_command.py +49 -0
- thefuck/rules/dry.py +15 -0
- thefuck/rules/fab_command_not_found.py +38 -0
- thefuck/rules/fix_alt_space.py +15 -0
- thefuck/rules/fix_file.py +80 -0
- thefuck/rules/gem_unknown_command.py +36 -0
- thefuck/rules/git_add.py +27 -0
- thefuck/rules/git_add_force.py +13 -0
- thefuck/rules/git_bisect_usage.py +16 -0
- thefuck/rules/git_branch_0flag.py +24 -0
- thefuck/rules/git_branch_delete.py +13 -0
- thefuck/rules/git_branch_delete_checked_out.py +19 -0
- thefuck/rules/git_branch_exists.py +25 -0
- thefuck/rules/git_branch_list.py +14 -0
- thefuck/rules/git_checkout.py +49 -0
- thefuck/rules/git_clone_git_clone.py +12 -0
- thefuck/rules/git_clone_missing.py +42 -0
- thefuck/rules/git_commit_add.py +17 -0
- thefuck/rules/git_commit_amend.py +11 -0
- thefuck/rules/git_commit_reset.py +11 -0
- thefuck/rules/git_diff_no_index.py +16 -0
- thefuck/rules/git_diff_staged.py +13 -0
- thefuck/rules/git_fix_stash.py +37 -0
- thefuck/rules/git_flag_after_filename.py +31 -0
- thefuck/rules/git_help_aliased.py +12 -0
- thefuck/rules/git_hook_bypass.py +27 -0
- thefuck/rules/git_lfs_mistype.py +18 -0
- thefuck/rules/git_main_master.py +16 -0
- thefuck/rules/git_merge.py +18 -0
- thefuck/rules/git_merge_unrelated.py +12 -0
- thefuck/rules/git_not_command.py +18 -0
- thefuck/rules/git_pull.py +16 -0
- thefuck/rules/git_pull_clone.py +13 -0
- thefuck/rules/git_pull_uncommitted_changes.py +14 -0
- thefuck/rules/git_push.py +44 -0
- thefuck/rules/git_push_different_branch_names.py +12 -0
- thefuck/rules/git_push_force.py +18 -0
- thefuck/rules/git_push_pull.py +20 -0
- thefuck/rules/git_push_without_commits.py +12 -0
- thefuck/rules/git_rebase_merge_dir.py +17 -0
- thefuck/rules/git_rebase_no_changes.py +13 -0
- thefuck/rules/git_remote_delete.py +13 -0
- thefuck/rules/git_remote_seturl_add.py +12 -0
- thefuck/rules/git_rm_local_modifications.py +19 -0
- thefuck/rules/git_rm_recursive.py +16 -0
- thefuck/rules/git_rm_staged.py +19 -0
- thefuck/rules/git_stash.py +15 -0
- thefuck/rules/git_stash_pop.py +18 -0
- thefuck/rules/git_tag_force.py +13 -0
- thefuck/rules/git_two_dashes.py +14 -0
- thefuck/rules/go_run.py +16 -0
- thefuck/rules/go_unknown_command.py +28 -0
- thefuck/rules/gradle_no_task.py +34 -0
- thefuck/rules/gradle_wrapper.py +13 -0
- thefuck/rules/grep_arguments_order.py +23 -0
- thefuck/rules/grep_recursive.py +10 -0
- thefuck/rules/grunt_task_not_found.py +37 -0
- thefuck/rules/gulp_not_task.py +22 -0
- thefuck/rules/has_exists_script.py +13 -0
- thefuck/rules/heroku_multiple_apps.py +12 -0
- thefuck/rules/heroku_not_command.py +11 -0
- thefuck/rules/history.py +15 -0
- thefuck/rules/hostscli.py +27 -0
- thefuck/rules/ifconfig_device_not_found.py +23 -0
- thefuck/rules/java.py +17 -0
- thefuck/rules/javac.py +18 -0
- thefuck/rules/lein_not_task.py +19 -0
- thefuck/rules/ln_no_hard_link.py +23 -0
- thefuck/rules/ln_s_order.py +26 -0
- thefuck/rules/long_form_help.py +27 -0
- thefuck/rules/ls_all.py +10 -0
- thefuck/rules/ls_lah.py +12 -0
- thefuck/rules/man.py +33 -0
- thefuck/rules/man_no_space.py +10 -0
- thefuck/rules/mercurial.py +27 -0
- thefuck/rules/missing_space_before_subcommand.py +21 -0
- thefuck/rules/mkdir_p.py +13 -0
- thefuck/rules/mvn_no_command.py +11 -0
- thefuck/rules/mvn_unknown_lifecycle_phase.py +30 -0
- thefuck/rules/nixos_cmd_not_found.py +15 -0
- thefuck/rules/no_command.py +41 -0
- thefuck/rules/no_such_file.py +30 -0
- thefuck/rules/npm_missing_script.py +17 -0
- thefuck/rules/npm_run_script.py +17 -0
- thefuck/rules/npm_wrong_command.py +42 -0
- thefuck/rules/omnienv_no_such_command.py +35 -0
- thefuck/rules/open.py +40 -0
- thefuck/rules/pacman.py +17 -0
- thefuck/rules/pacman_invalid_option.py +20 -0
- thefuck/rules/pacman_not_found.py +26 -0
- thefuck/rules/path_from_history.py +53 -0
- thefuck/rules/php_s.py +11 -0
- thefuck/rules/pip_install.py +15 -0
- thefuck/rules/pip_unknown_command.py +19 -0
- thefuck/rules/port_already_in_use.py +40 -0
- thefuck/rules/prove_recursively.py +27 -0
- thefuck/rules/python_command.py +17 -0
- thefuck/rules/python_execute.py +15 -0
- thefuck/rules/python_module_error.py +13 -0
- thefuck/rules/quotation_marks.py +12 -0
- thefuck/rules/rails_migrations_pending.py +14 -0
- thefuck/rules/react_native_command_unrecognized.py +34 -0
- thefuck/rules/remove_shell_prompt_literal.py +23 -0
- thefuck/rules/remove_trailing_cedilla.py +11 -0
- thefuck/rules/rm_dir.py +16 -0
- thefuck/rules/rm_root.py +16 -0
- thefuck/rules/scm_correction.py +32 -0
- thefuck/rules/sed_unterminated_s.py +18 -0
- thefuck/rules/sl_ls.py +14 -0
- thefuck/rules/ssh_known_hosts.py +37 -0
- thefuck/rules/sudo.py +47 -0
- thefuck/rules/sudo_command_from_user_path.py +21 -0
- thefuck/rules/switch_lang.py +117 -0
- thefuck/rules/systemctl.py +22 -0
- thefuck/rules/terraform_init.py +13 -0
- thefuck/rules/terraform_no_command.py +16 -0
- thefuck/rules/test.py.py +10 -0
- thefuck/rules/tmux.py +18 -0
- thefuck/rules/touch.py +14 -0
- thefuck/rules/tsuru_login.py +12 -0
- thefuck/rules/tsuru_not_command.py +15 -0
- thefuck/rules/unknown_command.py +13 -0
- thefuck/rules/unsudo.py +15 -0
- thefuck/rules/vagrant_up.py +21 -0
- thefuck/rules/whois.py +34 -0
- thefuck/rules/workon_doesnt_exists.py +32 -0
- thefuck/rules/wrong_hyphen_before_subcommand.py +20 -0
- thefuck/rules/yarn_alias.py +14 -0
- thefuck/rules/yarn_command_not_found.py +43 -0
- thefuck/rules/yarn_command_replaced.py +13 -0
- thefuck/rules/yarn_help.py +17 -0
- thefuck/rules/yum_invalid_operation.py +39 -0
- thefuck/shells/__init__.py +52 -0
- thefuck/shells/bash.py +94 -0
- thefuck/shells/fish.py +131 -0
- thefuck/shells/generic.py +154 -0
- thefuck/shells/powershell.py +43 -0
- thefuck/shells/tcsh.py +44 -0
- thefuck/shells/zsh.py +98 -0
- thefuck/specific/__init__.py +0 -0
- thefuck/specific/apt.py +3 -0
- thefuck/specific/archlinux.py +48 -0
- thefuck/specific/brew.py +15 -0
- thefuck/specific/dnf.py +3 -0
- thefuck/specific/git.py +32 -0
- thefuck/specific/nix.py +3 -0
- thefuck/specific/npm.py +21 -0
- thefuck/specific/sudo.py +18 -0
- thefuck/specific/yum.py +3 -0
- thefuck/system/__init__.py +7 -0
- thefuck/system/unix.py +57 -0
- thefuck/system/win32.py +43 -0
- thefuck/types.py +261 -0
- thefuck/ui.py +116 -0
- thefuck/utils.py +385 -0
- thefuck_leeguoo-3.41.dist-info/METADATA +681 -0
- thefuck_leeguoo-3.41.dist-info/RECORD +218 -0
- thefuck_leeguoo-3.41.dist-info/WHEEL +6 -0
- thefuck_leeguoo-3.41.dist-info/entry_points.txt +3 -0
- thefuck_leeguoo-3.41.dist-info/licenses/LICENSE.md +22 -0
- thefuck_leeguoo-3.41.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
thefuck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
thefuck/ai.py,sha256=JnKjve_9B8ijShows1235Jl3yblNMO7XqeRY7HlwDzg,23552
|
|
3
|
+
thefuck/argument_parser.py,sha256=wtWig8wiuO68tZOCgh3xsqzCvipBKztOXDttxoDZv-4,3240
|
|
4
|
+
thefuck/conf.py,sha256=Sx7DkEABiz1arVMayTDsVEWNqj6c9uF93EaI7iLlRus,4899
|
|
5
|
+
thefuck/const.py,sha256=qyHOd7Q1i_Ze2XF0g7zrwRcLQbuVHILItRHrKYIPvKE,3881
|
|
6
|
+
thefuck/corrector.py,sha256=8R_Uprr0IsBJWKcDrdCkNaNu54sOfNTQp5OmSdwFZjY,2509
|
|
7
|
+
thefuck/exceptions.py,sha256=l8tM4Z11OZyfkW-SZQLW_yG07yT897YlO1VtXeEiWIY,248
|
|
8
|
+
thefuck/logs.py,sha256=GDoYsUyNO0S7LFbGt_uaRik9nsw-iuzGoDLzpm1I7Qc,8456
|
|
9
|
+
thefuck/types.py,sha256=acx8Nrnd0lKD-UlENn4AoKcn_FBafrVQ9ZlFdr_Q6Kg,8348
|
|
10
|
+
thefuck/ui.py,sha256=3UHX5NVzcaNJiLmYvjA0Y0GkalCi0bsfmpy7AxLXe9w,3417
|
|
11
|
+
thefuck/utils.py,sha256=JRk8cN2wzIbtTV0o2JQxdZsuEQlXmsmDKxo85G8j3xw,10509
|
|
12
|
+
thefuck/entrypoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
thefuck/entrypoints/alias.py,sha256=IRDYB9RW3cm3xhW45N5foig4DFll_q1-thA_CgKz29c,741
|
|
14
|
+
thefuck/entrypoints/fix_command.py,sha256=vA974FbVKQMb8lBMiO1QYJDR3MhnMX6nMpIO8arXNVs,3872
|
|
15
|
+
thefuck/entrypoints/main.py,sha256=HAx8rl1mTRMPwtDR93pXEw8vkoKLKMS5f1JjOK93YD8,1698
|
|
16
|
+
thefuck/entrypoints/not_configured.py,sha256=IXtcJCuACXJalXGo2BUUg-utd_SXNKlEY9_VibJ3jN0,6369
|
|
17
|
+
thefuck/entrypoints/setup.py,sha256=TZ9u-ucFb4bK5zfq5shXqkEJfnutg0c899f84OJMPLQ,7556
|
|
18
|
+
thefuck/entrypoints/shell_logger.py,sha256=cgZoaIWO4Lw4bFcB2sc_zt4M454Lm3vprWqyXY8G9dg,2009
|
|
19
|
+
thefuck/output_readers/__init__.py,sha256=iKBqslIVLTebLx8wGhE1IwcJ5wxq-i6yyL2JMigejRk,523
|
|
20
|
+
thefuck/output_readers/read_log.py,sha256=4TdA8-0l1HhCRSihPGWVEx2UdgJE-Z-pH2VC9mVU5vk,3094
|
|
21
|
+
thefuck/output_readers/rerun.py,sha256=QF22Slwh-lrhAGS9UHu8yyq3vWzIdZ4drbzltbD_sFE,2032
|
|
22
|
+
thefuck/output_readers/shell_logger.py,sha256=DDn2XbM7iqfCLNWZDz0EnfXefqtUNfifpxLlLHovsRg,1616
|
|
23
|
+
thefuck/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
thefuck/rules/adb_unknown_command.py,sha256=JiU0Sn27JtXGX2o_YdPKgwYjDCPeF1iA7y54d19hFhM,1216
|
|
25
|
+
thefuck/rules/ag_literal.py,sha256=FGQiryQmEoDT3sOTpRissg967W3LVHElCo2CGiColVI,210
|
|
26
|
+
thefuck/rules/apt_get.py,sha256=YecqxJTAz2rBldZw30ILH3oLNd2QS5rrm-sCsaBB-mQ,1386
|
|
27
|
+
thefuck/rules/apt_get_search.py,sha256=sffz3Xwl0dJEhROWNLzuJ5e_c4teGN_qLdwAsVSh7ms,316
|
|
28
|
+
thefuck/rules/apt_invalid_operation.py,sha256=cDwsl_Oj2FTVn7-QoK52eU7qnbCG4f5YxIcV7g1Kgi4,1813
|
|
29
|
+
thefuck/rules/apt_list_upgradable.py,sha256=t4nF6TpLVYj_tqgAcfEb5aN7GRYKMk6wWkiEszrcsRg,350
|
|
30
|
+
thefuck/rules/apt_upgrade.py,sha256=NaSIbKvExqPiue3jWN0BV7x1Y-XREw7gaAfrZ9KmWp0,388
|
|
31
|
+
thefuck/rules/aws_cli.py,sha256=GMQiOMm3kIAC96WvnR23jiUUz6R1MWcyVC4BoaNbfPo,520
|
|
32
|
+
thefuck/rules/az_cli.py,sha256=Xy4Zqxf2eq3AYCT6aDjB7O6-6f1DDGuWG4F0TanBkJ4,560
|
|
33
|
+
thefuck/rules/brew_cask_dependency.py,sha256=iqzW87e-WoIYdNOnLv_TskI-912PFHRbNEJkHlPRPzI,866
|
|
34
|
+
thefuck/rules/brew_install.py,sha256=JHbm5pWcnsSLLtdB6QEbMKN0smM6Z4e1nfwzbDn8skY,776
|
|
35
|
+
thefuck/rules/brew_link.py,sha256=xxqLV9EIwhUmX6-BtBKVI-41ZWro3MBzS0DMgwHx6lw,433
|
|
36
|
+
thefuck/rules/brew_reinstall.py,sha256=xB49K7Xloh-COWAUjZAsOG1-G6jC8JCkOZK1k8ZjuuM,571
|
|
37
|
+
thefuck/rules/brew_uninstall.py,sha256=nIXQoyXLLt7oQN2W77pt0BvTp7RUPbg6psaRsvsL8QM,399
|
|
38
|
+
thefuck/rules/brew_unknown_command.py,sha256=hcpqGAVB8hsoI1nX-0FuyKRGtn6cwlXGync1mTdPYlg,2850
|
|
39
|
+
thefuck/rules/brew_update_formula.py,sha256=9TK9e6nddhYmL1Lz1YNbqp3Wli4_ZxteNN1nRtJOolM,342
|
|
40
|
+
thefuck/rules/cargo.py,sha256=RlJh3nMiIJ3qUINEEclbRX6BBd5L8SfPKpyRZ_0xh8o,114
|
|
41
|
+
thefuck/rules/cargo_no_command.py,sha256=bnZN4tGkbHvdYp_mmzn9Vstvi1HLBEgs2Y5rlwaauWc,417
|
|
42
|
+
thefuck/rules/cat_dir.py,sha256=s43_796a99gLelejBNSWAF0r7AweFNMYSFbwEZXsI3o,289
|
|
43
|
+
thefuck/rules/cd_correction.py,sha256=EysHNLNZRM3q0_mZAXi536nw_IdR2igJg94x9oXHFqg,1843
|
|
44
|
+
thefuck/rules/cd_cs.py,sha256=wZirb8eP6xWLDzX7tH-1WEU6-onCnveDH7wf0XngAik,416
|
|
45
|
+
thefuck/rules/cd_mkdir.py,sha256=4glb7noA2jED4s5zI3Um4IECIFqa60I2HPq2A9KnqOo,578
|
|
46
|
+
thefuck/rules/cd_parent.py,sha256=cVOTCBh67u4aQ8oznF6AhEFcTF7VOtQDZGW5XtYfeoo,321
|
|
47
|
+
thefuck/rules/chmod_x.py,sha256=KUFeE-DfjumjdG91bihVwPexk47deGv9ggra_kHOWVE,430
|
|
48
|
+
thefuck/rules/choco_install.py,sha256=xX2TIe0Y0USVtUxGS5LY_VCNtVhONBSIdhlb5SMYYoo,926
|
|
49
|
+
thefuck/rules/composer_not_command.py,sha256=YZMAS2gGfLWgQ5SrLaEvKa8WOUKp7wHUmqfDqeG9xyI,928
|
|
50
|
+
thefuck/rules/conda_mistype.py,sha256=I_hs-QOdmxCYwsH7X_d0xJv30gF2EQz6yHIe8p-UPQE,404
|
|
51
|
+
thefuck/rules/cp_create_destination.py,sha256=TSO8txLBN1m98GdDOvoiROAmFCDJ1-641CkCX5ccd-0,419
|
|
52
|
+
thefuck/rules/cp_omitting_directory.py,sha256=NQB61gk-XWBGO3-kA9gBKiqU2n9F8PNQBDzS87yc2yU,347
|
|
53
|
+
thefuck/rules/cpp11.py,sha256=8n27kX4_fj5MjmDS2_s1Q9MTtl_m9xXn256156Cp2CY,338
|
|
54
|
+
thefuck/rules/dirty_untar.py,sha256=GkL196z6EBJotKMF4faF2nTKxs-gvSnUXYtYEuGfO8Q,1510
|
|
55
|
+
thefuck/rules/dirty_unzip.py,sha256=X0fmHukVvq14HfDvQRV0nHKWc3C3JyFa3uYmBpDH00M,1577
|
|
56
|
+
thefuck/rules/django_south_ghost.py,sha256=-w4Chvr6xyWwk7q89xaTic4KpiQJiXYn_9ZQahCex3s,275
|
|
57
|
+
thefuck/rules/django_south_merge.py,sha256=peZME6CIdqsunprsUtUT9vm2XO0T7873oJ8b4lzaJH8,264
|
|
58
|
+
thefuck/rules/dnf_no_such_command.py,sha256=0dwQ4OKhK4gKV_WDwdUSXWx4oUXITQCYsIkWW23RGtU,963
|
|
59
|
+
thefuck/rules/docker_image_being_used_by_container.py,sha256=t3B9TtcSd0qzKrW_XKMmmb9cpfmC9MeWshEmTKeQPXc,631
|
|
60
|
+
thefuck/rules/docker_login.py,sha256=AMXnBIlRYJT5xTvgwH5Ueifsrp_shdBg30Ikb5t1zag,347
|
|
61
|
+
thefuck/rules/docker_not_command.py,sha256=kRmx4iOtcdjJdB3v2KQ90vLHfF2QQcWegTtWZArNerE,1854
|
|
62
|
+
thefuck/rules/dry.py,sha256=NQieg5Mwjdf8rzNKjoEG2JqxOfDp31AvVnuUmemy9rw,431
|
|
63
|
+
thefuck/rules/fab_command_not_found.py,sha256=2nJNRzWjMNiV2vvcPd15IBh1DLt2ZGfAIMZ29k6qSEc,1041
|
|
64
|
+
thefuck/rules/fix_alt_space.py,sha256=leUAiEPTV2ZZAOBVGtZ4TZP06RqsNlNGcu9_HwqrqqI,311
|
|
65
|
+
thefuck/rules/fix_file.py,sha256=tagQ8RBsUINYZv_mj--K1clSkq7bH8Dqrua4_QcuH_0,2352
|
|
66
|
+
thefuck/rules/gem_unknown_command.py,sha256=GuwyDtqq__TUimDEvEMY8HOhIgX8waDQp-viqLYpYNA,963
|
|
67
|
+
thefuck/rules/git_add.py,sha256=WeQlKpF0P4MSSBYQEc8gFuF5EM8ebd4m08Zg0X72Agw,739
|
|
68
|
+
thefuck/rules/git_add_force.py,sha256=jZOiJvZOfhMySqSXVJ9dCtcDK3XaBIzBg97xUydrqVo,352
|
|
69
|
+
thefuck/rules/git_bisect_usage.py,sha256=AEAEAhMnEfI7EXrym1ctTkRtV2cVIF34ohWZk7CHEss,485
|
|
70
|
+
thefuck/rules/git_branch_0flag.py,sha256=z8K03Ne7fEaD3vNM_h9UO-VEXxFBT4EY4_Z-bDZO5jg,801
|
|
71
|
+
thefuck/rules/git_branch_delete.py,sha256=O6hDvzUY6iMeC6-k2NGosHYTOCgYk-8sEtYwNo9CHVs,341
|
|
72
|
+
thefuck/rules/git_branch_delete_checked_out.py,sha256=QY-mdmtbtxDDD2_6I_oUvXx6G_Dtc-0BZYhrhsc0-R4,524
|
|
73
|
+
thefuck/rules/git_branch_exists.py,sha256=12x1u5SP5rM2MuKZcziB6rLWAx2Ty3I2Q-53GmsaQDQ,938
|
|
74
|
+
thefuck/rules/git_branch_list.py,sha256=uGMK53JTSMsJcW_JsRON5YzVDOfm8A5hp35Yna9XRWY,379
|
|
75
|
+
thefuck/rules/git_checkout.py,sha256=TgnRAry_PGZctePtPgYApAy0vKYIGe2kRtTpetlgpLM,1635
|
|
76
|
+
thefuck/rules/git_clone_git_clone.py,sha256=XN6ZgCeMGcnBDbHDQ3vJ2j9lX8pL1gmWWxrIsymK4EA,290
|
|
77
|
+
thefuck/rules/git_clone_missing.py,sha256=nAZtqFUdvK77pcQROmx5QIzNGWQmnmxSIZEtcBsFoog,1140
|
|
78
|
+
thefuck/rules/git_commit_add.py,sha256=oq7g-AFpGZYEZVmTlx1YBL6NGKCZI_QXtCXF1B38Ujc,412
|
|
79
|
+
thefuck/rules/git_commit_amend.py,sha256=hWIfrENaDERlPuljCGxVMhnqbDlJIulvupzzTqjTUW4,203
|
|
80
|
+
thefuck/rules/git_commit_reset.py,sha256=bPWHbNkoHCyqeydpv3IBKOUCyhUmITsbVb4xbt4H8eo,200
|
|
81
|
+
thefuck/rules/git_diff_no_index.py,sha256=y67gvZhGXeS9pL5EsUqN0DTbHkPdmGOs9grwtKHLGNg,454
|
|
82
|
+
thefuck/rules/git_diff_staged.py,sha256=MsraVhbv4uZz2l5ojT30PCurcqHmxFe2h8fkoTmFFvc,324
|
|
83
|
+
thefuck/rules/git_fix_stash.py,sha256=YiTYGrDeFDg_HQ33pacTU1S3MOaE-R11b5DyRe4Oa_E,901
|
|
84
|
+
thefuck/rules/git_flag_after_filename.py,sha256=bp0zpenKjBKkhjg_lUWGnd8eo4L2E5TPKCVx2JIkAuo,906
|
|
85
|
+
thefuck/rules/git_help_aliased.py,sha256=jyVngrfx4sc4r7xhBbTukXz1aZiDlYS1vxpgKRqVc-w,322
|
|
86
|
+
thefuck/rules/git_hook_bypass.py,sha256=N4AWVcAkU4W0yZ1j7XtiAi0sKWKEsD5hAvJrCxKXsJ0,620
|
|
87
|
+
thefuck/rules/git_lfs_mistype.py,sha256=WeId41d_wqD9WaFy7Eql7QOKYezhMjt5rMKSsbsPLLU,569
|
|
88
|
+
thefuck/rules/git_main_master.py,sha256=mfwlOtSpx54v0fBjqJgmZaMyCDL29p0UW7B_hkgvakU,358
|
|
89
|
+
thefuck/rules/git_merge.py,sha256=WpAbTOACpz-_HKHY6GUVK92Ao2CAyzlKKLD3vHmWVcU,596
|
|
90
|
+
thefuck/rules/git_merge_unrelated.py,sha256=A5UXseKNeFSee0aaFC9KgOR6aRSzMO8Min0tkUqeV9I,304
|
|
91
|
+
thefuck/rules/git_not_command.py,sha256=Gfke-uUdEQAWAhOR1RORJD9mhzajhijX9Y_w_53vv34,666
|
|
92
|
+
thefuck/rules/git_pull.py,sha256=txD7c0ikhym6_Q0JoGHkY92XZW6bS3STQdnuEYYLzEg,473
|
|
93
|
+
thefuck/rules/git_pull_clone.py,sha256=hNbWVuE0zYclzZT1lMK6KDlV57uShTKIJJmbPBI-Cag,401
|
|
94
|
+
thefuck/rules/git_pull_uncommitted_changes.py,sha256=hmE8JLzz-HaLJapFQ_kviL8hBJOKsmufRO7pBrWAJZ4,393
|
|
95
|
+
thefuck/rules/git_push.py,sha256=2rq5TYdamVsGuT77iBklyHnNlfLc5CDdelFjck3rIGg,1735
|
|
96
|
+
thefuck/rules/git_push_different_branch_names.py,sha256=ibl3DxsqmV8Mx0xzHxfGyvUFdsD60ggzJnx3SXdi9n4,340
|
|
97
|
+
thefuck/rules/git_push_force.py,sha256=_xQEHPWAEW2833maUH1F9_EJZPHyAIE5PjO1wdm1gxA,534
|
|
98
|
+
thefuck/rules/git_push_pull.py,sha256=r16msL0dW4M2Axjg6mtHMjzETXKNUOh4M4gN1v0xllo,706
|
|
99
|
+
thefuck/rules/git_push_without_commits.py,sha256=axgOJTjimGLFv8uKwq4bS0cvS3E3VJGlbRjDxnEZr0g,309
|
|
100
|
+
thefuck/rules/git_rebase_merge_dir.py,sha256=WDMZJwc7imExFWboeo8M7Iw8ECRqgPlulW_gZIM2L34,627
|
|
101
|
+
thefuck/rules/git_rebase_no_changes.py,sha256=8HNYqvA4RjgbLewweTZcHYF8pZ58f0ocWVYU63-SYnA,306
|
|
102
|
+
thefuck/rules/git_remote_delete.py,sha256=2bXJYOQibVVeaQ1VLrcLDCatkvoLPcLuyhUvwtqf2BY,239
|
|
103
|
+
thefuck/rules/git_remote_seturl_add.py,sha256=--b_xrqumjCBATl1VQVFQgI-vDlUaSh3OTuw_nNtccA,316
|
|
104
|
+
thefuck/rules/git_rm_local_modifications.py,sha256=RblXSnZfHrpqcRkPxdcOCuS00hKv7dtX2oo-sc1zLxM,621
|
|
105
|
+
thefuck/rules/git_rm_recursive.py,sha256=1arHgeU5gA49G55Y0Az9A3iL0PtaReS1wwT_VUsGntQ,442
|
|
106
|
+
thefuck/rules/git_rm_staged.py,sha256=VJoDUVr9Jg6uvFI1EakvoKATFCMWFtzUTd88bN1VZaY,629
|
|
107
|
+
thefuck/rules/git_stash.py,sha256=I0NbUZGeJpQv0rOpxGkHCKy05exIUftxBAMHswmzL7M,421
|
|
108
|
+
thefuck/rules/git_stash_pop.py,sha256=YqOjtVeRwYxXupWdBEDIRw7EaHszEZJf4rOqnmLNd-U,485
|
|
109
|
+
thefuck/rules/git_tag_force.py,sha256=Iii3Dxt0PQRUrmgnRiQofF6rLn-YQup0Akv8P3oG2p0,328
|
|
110
|
+
thefuck/rules/git_two_dashes.py,sha256=vrKOlRz_8t3b68XQwm3QsNX07HZLxuL26jRrHjxQPSs,375
|
|
111
|
+
thefuck/rules/go_run.py,sha256=_T4xo8jDD7goZarZrBzUExUI81DMbQapnlMKBmuCKkA,340
|
|
112
|
+
thefuck/rules/go_unknown_command.py,sha256=3lWhT6wU9kf-s2lPYTkV1YYh-kftZ36Ub8vGcIBbGng,921
|
|
113
|
+
thefuck/rules/gradle_no_task.py,sha256=0GingWGDVyLrCMQZJywM5V1-qWdf08ibgy3kzVke7kM,946
|
|
114
|
+
thefuck/rules/gradle_wrapper.py,sha256=dtSQoKG-KbFrMJqkLi5QQgf09tI7Y1lG0y_Drlxgx6A,330
|
|
115
|
+
thefuck/rules/grep_arguments_order.py,sha256=ar7JcV9P7mx6QBXCd9W2ggwR5XKmYuW9V2w6heQRnJQ,598
|
|
116
|
+
thefuck/rules/grep_recursive.py,sha256=_17MLlLfMMGsab_e7ebs55978EpgoCZx3EeWw25UHJQ,211
|
|
117
|
+
thefuck/rules/grunt_task_not_found.py,sha256=Z-jq9egVTIHSdvJcDvF9rcOnY7uZKaw81fREs2a-Csk,962
|
|
118
|
+
thefuck/rules/gulp_not_task.py,sha256=PmqI39NP4RUACoPNydGGZFzjRenXZoPoDTyyONYIiiA,635
|
|
119
|
+
thefuck/rules/has_exists_script.py,sha256=5Zm_GEBeJ7biHvaO-C90PB9-b4xvpxMLzDkCQnq9vuk,309
|
|
120
|
+
thefuck/rules/heroku_multiple_apps.py,sha256=_d6CyCgtJEEXin3pLHKdjluU7OsALDJLDxjEr6ujNg0,331
|
|
121
|
+
thefuck/rules/heroku_not_command.py,sha256=CDtGbd1F1HXmEuJmHuTHxtHENUW_PIowq_9rQsXsYeU,240
|
|
122
|
+
thefuck/rules/history.py,sha256=YgEm9hSHwJLwrcdUl9H2CCb5Dtyqb0up7kqRfjtoN5I,403
|
|
123
|
+
thefuck/rules/hostscli.py,sha256=ksTiSH8OJWhxupe6GhOZ8wOUtoZ4qqV-dvISIEYjmXA,753
|
|
124
|
+
thefuck/rules/ifconfig_device_not_found.py,sha256=hxoGsOyhK7aXD4KvMKOV-kmgy_hf4IJY5F8UhztqqB0,704
|
|
125
|
+
thefuck/rules/java.py,sha256=6WIF3d4hsZi0CyK8skH0799zzfxmAkRTJpyKbmjrEB0,298
|
|
126
|
+
thefuck/rules/javac.py,sha256=4WP-tP0A5x2raqPUxCd1LcGjinotsNPTFQt4_7dknJ4,357
|
|
127
|
+
thefuck/rules/lein_not_task.py,sha256=QPRiyeXHLDvbvey-j1tFJMuZcHByA4UMiwavxM05ngg,641
|
|
128
|
+
thefuck/rules/ln_no_hard_link.py,sha256=Lkr4dGRU_PczGBBy4tzVCweTUZPblOUnWxjwTauIC-M,518
|
|
129
|
+
thefuck/rules/ln_s_order.py,sha256=jD6tgHpbOHVXK6CV249dV1pdXrPtzw23AzP3lalBAGA,783
|
|
130
|
+
thefuck/rules/long_form_help.py,sha256=oR9rL3U3GXeK4kgEcA3ONi0AMClR07jIE-WFazgCvIA,678
|
|
131
|
+
thefuck/rules/ls_all.py,sha256=s6e3I1fvQ94QZg52_zV1N4o2iZ0fVQEGPMFBKeRTrAk,204
|
|
132
|
+
thefuck/rules/ls_lah.py,sha256=zUKx3vblYb3Y7fx8L8vkUDQYmVqH95CFu0HrxMT-OdI,262
|
|
133
|
+
thefuck/rules/man.py,sha256=PFccdRJJwEFuNLl6aTzY6ckjKGt0UEkMwyGzRXBWmVw,860
|
|
134
|
+
thefuck/rules/man_no_space.py,sha256=PYaUgeLun_42GSLVWDJ-o5OLv9VjMhy8UVOs52jlPPE,228
|
|
135
|
+
thefuck/rules/mercurial.py,sha256=25sWkIEOrTNJAQvCBKJb_oHKIWK47ppScoJ1eY2dhNc,807
|
|
136
|
+
thefuck/rules/missing_space_before_subcommand.py,sha256=FjxFgJ06MSxNsAgJY5r69vDbEkZSZHZegE2aBJSQDJc,575
|
|
137
|
+
thefuck/rules/mkdir_p.py,sha256=HaXT_H-b0rgKgr2IPNAtRJ0nZqIxUJBPIZqmKlZg9kg,307
|
|
138
|
+
thefuck/rules/mvn_no_command.py,sha256=E5BxkcaGllx5WYurgy7rpgayTjCzVGshNOB_SaIUQxE,273
|
|
139
|
+
thefuck/rules/mvn_unknown_lifecycle_phase.py,sha256=CfTHOGc19jvhB_KdjSG_B1gEzuIXbcYLSE-xfgprtXw,1011
|
|
140
|
+
thefuck/rules/nixos_cmd_not_found.py,sha256=6dyvTEX-KoaEOdyN70swwhFzrcavYgaKMUOIum2j7Yc,378
|
|
141
|
+
thefuck/rules/no_command.py,sha256=r6IJWRtWV9zWsZgiRYLk2jyjKfxxk33Lb8cUIRY9yyU,1254
|
|
142
|
+
thefuck/rules/no_such_file.py,sha256=ZGMwAqFeYqXEu3pTd-3Zx2w22subqVk8_hXTcxL6tLg,787
|
|
143
|
+
thefuck/rules/npm_missing_script.py,sha256=6ny1BMhfiUGp0qVBotn5aArGE4lld9qwJvXCixW8PZg,524
|
|
144
|
+
thefuck/rules/npm_run_script.py,sha256=Acsq7UoIhlih7Ky7LTsASiJW4Syily-1r-vYbRMqURU,488
|
|
145
|
+
thefuck/rules/npm_wrong_command.py,sha256=epwaYEcVitAehefgIXYrBROETTI5w5o6L11ZEAtJwPY,1290
|
|
146
|
+
thefuck/rules/omnienv_no_such_command.py,sha256=2cglWxN6F-jE2yFSK3sEfD2DYoeor7c9iGQnpAEOAdk,1061
|
|
147
|
+
thefuck/rules/open.py,sha256=nND61pwtaJZ9uiSVLqxqc52o29zhds3xw3JUqd6VA2I,1302
|
|
148
|
+
thefuck/rules/pacman.py,sha256=iU5vBmOy-bhtYPEVf-v1w6m779nqsQUaYc2yenakv5s,459
|
|
149
|
+
thefuck/rules/pacman_invalid_option.py,sha256=3xXn6qAyk81rzewkH9DT0JPXgaGMVDuZjCZrAqZwcBc,541
|
|
150
|
+
thefuck/rules/pacman_not_found.py,sha256=YxNXUUoauv0MKgmd4WKLd8SnwjeqhfsyXWajRHH1G98,706
|
|
151
|
+
thefuck/rules/path_from_history.py,sha256=j2woa0hwEt7POZFV4TXwbCFBBPLGiIB8fap2QKeuIro,1493
|
|
152
|
+
thefuck/rules/php_s.py,sha256=yvPGW_mh8mSZ80b6C9HkuNrlFdNOwc7njJDO0AMTFc4,281
|
|
153
|
+
thefuck/rules/pip_install.py,sha256=stMC3BQGUTKUHGz2MuZ6mXD0CTEXHFZiUrPcv8Xpz8U,518
|
|
154
|
+
thefuck/rules/pip_unknown_command.py,sha256=c45WnH7f-b-UMUisbDDCEXZgirJ6yPWdOZcSvmGB9SI,602
|
|
155
|
+
thefuck/rules/port_already_in_use.py,sha256=FtIRPc7ebOtXDAOXGrdERi5eYlQg3VeDQbD9ltTAx1w,1064
|
|
156
|
+
thefuck/rules/prove_recursively.py,sha256=Lme1vXDuEbts7jv4YZ_8XgTP1HaK_12wK4WPSHDBNpc,653
|
|
157
|
+
thefuck/rules/python_command.py,sha256=we0R4ko31ls2KQTwUuyS4mx7PZ5RQVIdmAu8RPpoo8E,501
|
|
158
|
+
thefuck/rules/python_execute.py,sha256=8HMsyA3DH2kQmTLGdfspI_6E5nw7zhTfoFkjAKuE_2g,333
|
|
159
|
+
thefuck/rules/python_module_error.py,sha256=HHseBRonAxFZBPVRj29OBSSoeVrFw_jK7VT4mbOe7iA,381
|
|
160
|
+
thefuck/rules/quotation_marks.py,sha256=cw4uh5zK6xUFlQeU4tfovieKHTvkohb2gSPV04U0BZU,236
|
|
161
|
+
thefuck/rules/rails_migrations_pending.py,sha256=_i9ZGKPwCAl4kKqUoU428zDbcQHjCUlpWSRAmwwM6xg,374
|
|
162
|
+
thefuck/rules/react_native_command_unrecognized.py,sha256=jWR6eesL2GUpNVNajStUVsT69lNfJNdJiZTHqhyGBu0,883
|
|
163
|
+
thefuck/rules/remove_shell_prompt_literal.py,sha256=xi62eJIG9agNuUUGMy3cHxtjSlxknNlp3LYYpYOCy8E,534
|
|
164
|
+
thefuck/rules/remove_trailing_cedilla.py,sha256=_w2bCRvfwMlaqt9pyY-ASMgcs-Wpnr2TY2UcsnoxMhg,172
|
|
165
|
+
thefuck/rules/rm_dir.py,sha256=ObyPCSc5oh2ZiHfpnmC2FeWE1JmxfHCzSpLBhbgqKfQ,390
|
|
166
|
+
thefuck/rules/rm_root.py,sha256=CHX7yyMwqzq69Lir0Uw6QH755d4wt5dSfwMxO7C5_UU,423
|
|
167
|
+
thefuck/rules/scm_correction.py,sha256=wtrsA_wj0GMsXyhZ7-Xy6sWg-7ccfOdVqB5Ow-5cbRo,675
|
|
168
|
+
thefuck/rules/sed_unterminated_s.py,sha256=bTu8xjKrQRPylHPkBm__YyjquW-rGPmhgmbMgcD9Bdw,419
|
|
169
|
+
thefuck/rules/sl_ls.py,sha256=B2Tv_eHgESckRoMSI2ifvKK6My0UC_nMP97KJXgg0ZQ,233
|
|
170
|
+
thefuck/rules/ssh_known_hosts.py,sha256=E7DMU4og873-AlMv4BpeHzyD5XIpUn_Dvebu6S3YA0k,1068
|
|
171
|
+
thefuck/rules/sudo.py,sha256=7dKJQO68zRvjnRKEoaKYiRfxQw7eAVjUZSSdPpgK2E0,1711
|
|
172
|
+
thefuck/rules/sudo_command_from_user_path.py,sha256=ZPV94IQjipnZ0k0FemIqBlz-Xig0Cw1iJiUoF_xG8_A,593
|
|
173
|
+
thefuck/rules/switch_lang.py,sha256=XTgu8tLvHv2MnmLy3tTorPa9rvezXwTlmyHBJzj5EHE,5622
|
|
174
|
+
thefuck/rules/systemctl.py,sha256=0sp4RvobPble1NOI3sof8OerT9CxnAoooh0BtV-_Lz0,595
|
|
175
|
+
thefuck/rules/terraform_init.py,sha256=LGzsNWMc95IyZvNhCSgkM7JACmgKOIUEec8-gEiZpPA,353
|
|
176
|
+
thefuck/rules/terraform_no_command.py,sha256=2mFYOap_rzToJTNSTjukqrmGyzN0BFY1cbRyYzc79O4,466
|
|
177
|
+
thefuck/rules/test.py.py,sha256=JiYj0jIGY_Mc-4EAOhcpJi-phVfbwr-81e98xEpuU8U,208
|
|
178
|
+
thefuck/rules/tmux.py,sha256=T4T0gzze-Jss62gwOChWsKT5GTtLWafzqz150RFHgrA,478
|
|
179
|
+
thefuck/rules/touch.py,sha256=b3tL6qOZgKTqcnie-6j5YMpuldiExsb8bouUcliZ4xY,364
|
|
180
|
+
thefuck/rules/tsuru_login.py,sha256=4PleaOBb4vFrhVWuLIifvxYFcIYioB21KtGC2tuCIyU,299
|
|
181
|
+
thefuck/rules/tsuru_not_command.py,sha256=lZjo0mg9zsTa4wlC_tDmHKah9Y66C4qXMBQ8wbXfnMk,527
|
|
182
|
+
thefuck/rules/unknown_command.py,sha256=mB89rDGoSMGSltBeaAhXhvm6AKMGk8tHy1Qrcj_G0uo,470
|
|
183
|
+
thefuck/rules/unsudo.py,sha256=wgk3RWjNT0adBkBI4d37pQXEhrDfLkRmSd8KqdOhUTs,362
|
|
184
|
+
thefuck/rules/vagrant_up.py,sha256=GSCertCA3wEINrjvhFTUmLslOMD_ILwuGs0vHpE6Ajw,550
|
|
185
|
+
thefuck/rules/whois.py,sha256=fmBHCJl1w2WHZ_WPsqbxuaz73PrAbtzxFeYZDApSSbk,1290
|
|
186
|
+
thefuck/rules/workon_doesnt_exists.py,sha256=RI2eZ1LVug3xZXTGJJUMeli3k-c2ImwbNlsNg0zs51k,811
|
|
187
|
+
thefuck/rules/wrong_hyphen_before_subcommand.py,sha256=SqXMTkJCSbohz1hJd1gMgfhApU7_bO6f9Gh6nU9JLDg,473
|
|
188
|
+
thefuck/rules/yarn_alias.py,sha256=AuMGPHIo1rNOwKeXAWIkvX-7qaLICXVO0ePxVnPobi4,368
|
|
189
|
+
thefuck/rules/yarn_command_not_found.py,sha256=23CV3FgvKzRP0PfRLoVQjTJKUfyzGqHTqfzbDi09OjA,1131
|
|
190
|
+
thefuck/rules/yarn_command_replaced.py,sha256=R4ppxSWFG8LiVTwVEQu0zJ5bLgBcxJNKGcT2gm1KuJI,255
|
|
191
|
+
thefuck/rules/yarn_help.py,sha256=KQu8Zz-n9c0x77mjp2yB_Idw7MyQQGXmYrFxexS-pOk,431
|
|
192
|
+
thefuck/rules/yum_invalid_operation.py,sha256=YZObcq6bJNew63btodMhcf5WX8zuJUzgxzJFq204fFQ,1131
|
|
193
|
+
thefuck/shells/__init__.py,sha256=0mtUMXF01pAAAuMCYgsKARMAes-iBBmagUl-hClN8bg,1152
|
|
194
|
+
thefuck/shells/bash.py,sha256=ZgRYSnpxcjVhIr0D-4KWMNNW0CHzUmBHAm7nq7xlprg,3506
|
|
195
|
+
thefuck/shells/fish.py,sha256=JINuCZrjNHv0V3r5AKOA2ElGyb86khlFxlwAuNRv6ek,4930
|
|
196
|
+
thefuck/shells/generic.py,sha256=sgLeONdgkFnKijvJ9La-t2Zh6gitcAfNrvHjDH4nLn8,4917
|
|
197
|
+
thefuck/shells/powershell.py,sha256=p7pQXCjJA_yeadlo5wP4ZF3cioBtdmr6CfP1X12t14M,1699
|
|
198
|
+
thefuck/shells/tcsh.py,sha256=j7BBoynfHP38iSqbuhjrOSsYpJs7lL4Ib2gstBiD1TQ,1489
|
|
199
|
+
thefuck/shells/zsh.py,sha256=_9qS6WAD9c8V0fVmIUe0-axy_CZwQuHvpBOGL2gqdbw,3529
|
|
200
|
+
thefuck/specific/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
thefuck/specific/apt.py,sha256=KKEZCdkXuniIZ2b9wG-mav7edoVKxW0T5DZm5rew21o,72
|
|
202
|
+
thefuck/specific/archlinux.py,sha256=b6dS3dFPw6_f5MMBlXgfNLnFEoNtprDfcVaO8YCtZls,1263
|
|
203
|
+
thefuck/specific/brew.py,sha256=NVKZhF7S-QJIRtjeAhqVVeR1chg5oKTkDPsT-T460wc,342
|
|
204
|
+
thefuck/specific/dnf.py,sha256=7piwBM2uml0IDBNCEOgfOLbgpIWnyuSoUqqwXWsPXJA,68
|
|
205
|
+
thefuck/specific/git.py,sha256=1NKDKBOeSNT-2lpAiJQMYm36bFzIFYr-FkAwnQooUA4,1165
|
|
206
|
+
thefuck/specific/nix.py,sha256=zmA9s60G1kwP9an-7Qw2XT88LmO9DO2BR6H-mFf-8Ws,68
|
|
207
|
+
thefuck/specific/npm.py,sha256=fbS9atqWC1_1ZBgr9pXLEaO-f-KztPwcY_i_nYB0N_Y,558
|
|
208
|
+
thefuck/specific/sudo.py,sha256=LjZWJeTUT3TGtLtG7qp0DbbTfnTnql9rA3D9jKR1ZYM,500
|
|
209
|
+
thefuck/specific/yum.py,sha256=d5bKvJe9-7XhKFn4XD-rRhA5xltZB1hln0kFcuc6fgI,68
|
|
210
|
+
thefuck/system/__init__.py,sha256=u-CuJoEbnpaGtZJPZEJ8e8_690aZPtPpHnj3A_2Q3nE,134
|
|
211
|
+
thefuck/system/unix.py,sha256=DTmCRbhyEsbWK2LJ5Bs53d7IdpNHvJ6EoWgQKd7FvOg,1087
|
|
212
|
+
thefuck/system/win32.py,sha256=yI4NVqyLLdGW5OSHJOsZ7TMsxdFCcClXLvkyXCvaMas,860
|
|
213
|
+
thefuck_leeguoo-3.41.dist-info/licenses/LICENSE.md,sha256=ecUSGoFr4Nil762iOhuFjec5QpG8Zo7WyDDIhhuxR0k,1111
|
|
214
|
+
thefuck_leeguoo-3.41.dist-info/METADATA,sha256=ET_dQV0Zh4nCfbhEAOH0_W0_X5OWOOchegtUlW09zc4,30680
|
|
215
|
+
thefuck_leeguoo-3.41.dist-info/WHEEL,sha256=7wAbZI8A1UjN-j4-aYf66qBxOZ0Ioy0QNykkY5NcGJo,109
|
|
216
|
+
thefuck_leeguoo-3.41.dist-info/entry_points.txt,sha256=IDe-k-s9Kx1hOkdCmWqgZiXOZziAanvamomp58t5bAI,105
|
|
217
|
+
thefuck_leeguoo-3.41.dist-info/top_level.txt,sha256=o387o--ehUTI_trHazWblfoS1BKMaAiOtjYuXWEJahk,8
|
|
218
|
+
thefuck_leeguoo-3.41.dist-info/RECORD,,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2015-2022 Vladimir Iakovlev
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
thefuck
|