diff --git a/integrations/git/post-receive b/integrations/git/post-receive
index 6169fad3..0424d0f9 100755
--- a/integrations/git/post-receive
+++ b/integrations/git/post-receive
@@ -74,8 +74,6 @@ def git_commit_range(oldrev, newrev):
     commits = ''
     for ln in subprocess.check_output(log_cmd).splitlines():
         email, subject = ln.split(None, 1)
-        if len(subject) > 60:
-            subject = subject[:57].rstrip() + '...'
         commits += '!gravatar(%s) %s\n' % (email, subject)
     return commits