diff options
author | hut <hut@lavabit.com> | 2010-03-08 19:03:46 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-08 19:06:38 +0100 |
commit | ea775b1c823d150ec6179a4f831ac88f86a8309d (patch) | |
tree | 7c26bc0cf52e5c732e479a2f0c323c096bfdc562 | |
parent | 014c539270f8e31a1b3ff0aea57c00eadd67a9d3 (diff) | |
download | ranger-ea775b1c823d150ec6179a4f831ac88f86a8309d.tar.gz |
make minimal_snapshot: snapshot with only neccessary files
-rw-r--r-- | Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 392c6a9a..0d307907 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DOCDIR = doc/pydoc CWD = $(shell pwd) EDITOR = vim -.PHONY: all clean doc cleandoc edit push test commit install info snapshot +.PHONY: all clean doc cleandoc edit push test commit install info snapshot minimal_snapshot info: @echo 'This makefile provides shortcuts for common tasks.' @@ -56,3 +56,15 @@ commit: test snapshot: git archive HEAD | gzip > $(NAME)-$(shell git rev-list HEAD | head -n 1 | cut -b 1-16).tar.gz + +minimal_snapshot: + @echo 'This is not quite working well. I will abort now' && false + git checkout -b no_help + git rm -rf doc + git rm -rf test + git rm all_tests.py + git rm TODO + git commit -a -m'removed documentation' + git archive HEAD | gzip > $(NAME)-$(shell git rev-list HEAD | head -n 1 | cut -b 1-16).tar.gz + git reset --hard no_help^ + git branch -D no_help |