-
-
Save sfwn/5e168b7c4166073f36e72de7ebb3e308 to your computer and use it in GitHub Desktop.
Script to wrap the `linguist` command so it can be used on non-repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Local Linguist (linguist for non repos)" | |
if git status 2> /dev/null > /dev/null; then | |
echo "!!! This directory is already a git repository... please use the 'linguist' command instead" | |
echo "!!! If this command exits unclean it will leave a git repository behind" | |
echo "!!! You can remove the git repository by running 'rm -Rf .git'" | |
else | |
git init 2> /dev/null > /dev/null | |
git add --all 2> /dev/null > /dev/null | |
git commit -m "local linguist auto commit" 2> /dev/null > /dev/null | |
linguist "$@" | |
rm -Rf .git 2> /dev/null > /dev/null | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment