Skip to content

roygrssmn/git-spell-check

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Git Spell Check

In this repository you can find scripts for Git pre-commit and commit-message hooks that spell checks changes in files and commit message which you are about to commit.

Instructions

To use this script, clone the following repository:

~]$ git clone git://github.com/mprpic/git-spell-check.git

Place this scripts into the .git/hooks/ directory in your repository. They must be called pre-commit and commit-msg and be executable. A Git hook only works in a single repository. You need to copy this hook into every repository you wish to use it in manually. Optionally, you can set up a symlink in the .git/hooks/ directory pointing to the script. That way, each time the script is updated in the GitHub repository, you won't have to replace it in the .git/hooks/ directory. To create a symlink in your repository, execute:

book]$ ln -s ~/git-spell-check/pre-commit .git/hooks/pre-commit

You will need to install aspell.

On Mac:

~]$ brew install aspell

On Ubuntu:

~]$ apt-get install -y aspell

Each time you try to commit, the scripts run to spell check the content you are committing. If misspelled words are found, you can either save them into a custom Aspell dictionary (which means they will be ignored next time the script is run), or ignore them. The following options are available when the script is run:

Add any of the misspelled words into your custom dictionary?
  * a[ll]     (add all words into dict, continue with commit)
  * s[ome]    (add some words into dict, fix others, no commit)
  * i[gnore]  (add some words into dict, ignore rest, continue with commit)
  * n[one]    (no commit)

Should you want to bypass the pre-commit hook (though not recommended), you can commit with git commit --no-verify.

Troubleshooting

A missing word can be added to the dictionary using the command-line tool, example to add readme to dictionary

echo -e "*readme\n#" | aspell -a

To-Do

  • Aspell considers foo_bar two words, and grep greps for word boundaries around foo and bar.

Copyright

Git Spell Check — spell checking pre-commit Git hook. Copyright (C) 2012 Martin Prpič

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

About

Spell checking pre-commit Git hook.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%