Skip to content

Instantly share code, notes, and snippets.

@dlrobertson
Created May 15, 2016 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlrobertson/ea754438b96f9682abba631bf406a1c5 to your computer and use it in GitHub Desktop.
Save dlrobertson/ea754438b96f9682abba631bf406a1c5 to your computer and use it in GitHub Desktop.
Avoid accidentally pushing with tidy errors present
[alias]
servo-push = "!f() { \
./mach test-tidy --faster; \
if [[ $? != 0 ]]; then \
echo 'tidy failed: please fix'; \
exit 1; \
fi; \
git push $@; \
}; f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment