diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2013-11-26 10:36:10 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2013-11-26 10:36:10 -0800 |
| commit | 8ddf2e94df70707b458528a437759b96046d3e01 (patch) | |
| tree | d442818d92d3c9c6f7fcdc92857a1228963849a1 /_posts/2009-04-14-git-and-prove.textile | |
| parent | Don't need to use the IP in the makefile. (diff) | |
| download | lumberjaph-8ddf2e94df70707b458528a437759b96046d3e01.tar.gz | |
Huge update.
Moved all posts from textile to markdown. Updated all the CSS and
styles. Added a new page for the resume.
Diffstat (limited to '')
| -rw-r--r-- | _posts/2009-04-14-git-and-prove.md (renamed from _posts/2009-04-14-git-and-prove.textile) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_posts/2009-04-14-git-and-prove.textile b/_posts/2009-04-14-git-and-prove.md index fca6329..60c8740 100644 --- a/_posts/2009-04-14-git-and-prove.textile +++ b/_posts/2009-04-14-git-and-prove.md @@ -1,14 +1,14 @@ --- layout: post -category: app -title: git and prove +summary: In which I add a hook to git to run my tests. +title: Git and prove --- A little trick to force you to run your tests before a commit: -in a repositorie, create the following file *.git/hooks/pre-commit* with this content: +in a repositorie, create the following file **.git/hooks/pre-commit** with this content: -{% highlight bash %} +{% highlight sh %} #!/bin/sh if [ -d t ]; then res=`prove t` |
