Tag: Git的7个神仙技巧

  • Git的7个神仙技巧,让你功力大增

    Git的7个神仙技巧,让你功力大增

    1、Git 中的自动更正 我们有时都会打错字,但如果启用了 Git 的自动更正功能,就可以让 Git 自动修正打错的子命令。假设你想用 git status 检查状态,却不小心输入了 git stats。正常情况下,Git 会告诉你 stats 不是一条有效的命令:$ git statsgit: ‘stats’ is not a git command. See ‘git –help’.The most similar command isstatus为了避免类似的情况发生,请在 Git 配置中启用 Git 自动更正功能:$ git config –global help.autocorrect 1如果你希望这个命令只适用于你当前的版本库,请省略 –global 选项。这条命令启用了自动更正功能。更深入的教程可以在 Git Docs 中找到,但尝试一下和上面一样的错误命令,就能很好地了解这个配置的作用:$ git statsgit: ‘stats’ is not a git command. See ‘git –help’.On…