I hereby claim:
- I am mallocator on github.
- I am mallox (https://keybase.io/mallox) on keybase.
- I have a public key whose fingerprint is 7752 7413 569E 8350 44F5 FF48 59BC 8AB4 3FBC 60BB
To claim this, I am signing this object:
title:PvE Wishlist | |
description:A collection of items suited for PvE |
I hereby claim:
To claim this, I am signing this object:
body { | |
padding: 0 10%; | |
} | |
p { | |
text-align: left; | |
font-size: 18px; | |
letter-spacing: 0.08px; | |
line-height: 26px; | |
word-wrap: break-word; |
#!/bin/bash | |
# save the file as <git_directory>/.git/hooks/commit-msg.d/task and chmod +x | |
#Replace issue and word length(4) with your label to check for | |
if [ "${1:0:4}" = "TASK-" ]; then | |
#Allow maven release plugin to make commits even without a task id | |
if [ "${1:0:22}" != "[maven-release-plugin]" ]; then | |
echo >&2 Commit Message is missing a Task ID | |
exit 1 |
#!/bin/bash | |
# save the file as <git_directory>/.git/hooks/pre-commit.d/mvn_test and chmod +x | |
echo "Running mvn clean test for errors" | |
# retrieving current working directory | |
CWD=`pwd` | |
MAIN_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
# go to main project dir |