Skip to content

Instantly share code, notes, and snippets.

@Jakobovski
Jakobovski / prepare-commit-msg
Created December 7, 2015 10:28
Script to automatically add the branch name and description to commit messages.
#!/bin/sh
# Automatically adds branch name and branch description to every commit message.
# Rename .git/hooks/prepare-commit-msg.sample to prepare-commit-msg, paste the script and make the file executable.
# Modified from: http://stackoverflow.com/questions/5894946/how-to-add-gits-branch-name-to-the-commit-message
NAME=$(git branch | grep '*' | sed 's/* //')
DESCRIPTION=$(git config branch."$NAME".description)
echo "[$NAME"'] '$(cat "$1") > "$1"
if [ -n "$DESCRIPTION" ]
@Jakobovski
Jakobovski / timer_utils.py
Created April 26, 2019 12:12
A simple timer for python code blocks
import time
class timer(object):
"""
A simple timer used to time blocks of code. Usage as follows:
with timer("optional_name"):
some code ...
some more code
"""
def __init__(self, name=None):