From f54aec3fcdd0925f9427940ab86eb7acbfae3203 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Fri, 1 Jun 2012 22:54:03 -0700 Subject: [PATCH] remove project script (I'm not uusing it) --- project | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 project diff --git a/project b/project deleted file mode 100755 index 47b52fd..0000000 --- a/project +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -# project -# Copyright 2008, Sean B. Palmer, inamidst.com -# Licensed under the Eiffel Forum License 2. - -# archive - Create phenny.tar.bz2 using git archive -function archive() { - git archive --format=tar --prefix=phenny/ HEAD | bzip2 > phenny.tar.bz2 -} - -# commit - Check the code into git and push to github -function commit() { - git commit -a && git push origin master -} - -# history - Show a log of recent updates -function history() { - git log --pretty=oneline --no-merges -10 -} - -# help - Show functions in project script -function help() { - egrep '^# [a-z]+ - ' $0 | sed 's/# //' -} - -eval "$1"