git config --global help.autocorrect1 现在当你的 git 命令有一个拼写错误时,git 会尝试纠正你的错误,例如: 图中我们输入的命令是:git fuc, git 发现fuc这个命令不存在,就会去命令列表里面尝试匹配已有的命令,根据匹配结果选择相似度较高的那个。这个功能在平常快速敲命令时还是很实用的。 2. 搜索代码库内容 ...
$ git stats git: ‘stats’ is not a git command. See ‘git --help’. The most similar command is status 为了避免类似的情况发生,请在 Git 配置中启用 Git 自动更正功能: $ git config --global help.autocorrect 1 如果你希望这个命令只适用于你当前的版本库,请省略--global选项。 这条命令启用了...
git: ‘stats’ is not a git command. See ‘git --help’. The most similar command is status 为了避免类似情形,只需要在你的 Git 配置中使用自动纠错功能。 $ git config --global help.autocorrect 1 如果你只想对当前的仓库生效,就省略掉选项--global。 这个命令会使能自动纠错功能。在相应的 中可以...
2 二、Help:常用的辅助查询命令在git 命令行里查看everyday gitgit help everyday显示git常用的帮助命令git help -g获取Git Bash的自动补全~/.git-completion.bash&&echo'[-f~/.git-completion.bash]&&.~/.git-completion.bash'>>~/.bashrc设置自动更正gitconfig--globalhelp.autocorrect1 3 三、Re...
help.autocorrect 假如你打错了一条命令,会显示: $ git chekcout master git:'chekcout' 不是一个 git 命令。参见 'git --help'。 您指的是这个么? checkout Git 会尝试猜测你的意图,但是它不会越俎代庖。 如果你把 help.autocorrect 设置成 1,那么只要有一个命令被模糊匹配到了,Git 会自动运行...
git:'chekcout'不是一个 git 命令。参见'git --help'。 您指的是这个么? checkout Git 会尝试猜测你的意图,但是它不会越俎代庖。 如果你把help.autocorrect设置成 1,那么只要有一个命令被模糊匹配到了,Git 会自动运行该命令。 代码语言:javascript ...
2.1.2 help.autocorrect 该配置仅仅在Git1.6.1及以上版本号有效,假设你错打了一条命令。会显示: $git com tig:'com' is not a git-command.See 'git --help'. Did you mean this?commit 2.2Git的着色 Git能够为输出到你终端的内容着色,以便你能够凭直观的界面进行高速的分析。
help.autocorrect 该配置项只在 Git 1.6.1及以上版本有效,假如你在Git 1.6中错打了一条命令,会显示: $ git com git: 'com' is not a git-command. See 'git --help'. Did you mean this? commit 如果你把help.autocorrect设置成1(译注:启动自动修正),那么在只有一个命令被模糊匹配到的情况下,Git 会...
$ git config –global help.autocorrect -1 $ git config –global bash.showDirtyState true $ git config –global bash.showUntrackedFiles true $ git config –global bash.showStashState true “` 2. 打开一个新的命令行窗口,现在你应该能够使用tab键来补全Git命令了。例如,当你输入`git ch`时,按下...
help.autocorrect 该配置项只在 Git 1.6.1及以上版本有效,假如你在Git 1.6中错打了一条命令,会显示: $ git com git:'com'is not a git-command. See'git --help'. Did you mean this?commit 如果你把help.autocorrect设置成1(译注:启动自动修正),那么在只有一个命令被模糊匹配到的情况下,Git 会自动运...