Git Tip: Fast commit alias

Often the changes I do to my working copy are small and I don’t want to waste time with explaining what it is. So I’ve created a bash alias to do a commit with a generic message for me:

alias gcf='git commit -a -m "fast commit"'