ソースを参照

Added gitclean + gitcleanforce to Makefile

Ask Solem 15 年 前
コミット
7c933288ac
1 ファイル変更7 行追加1 行削除
  1. 7 1
      Makefile

+ 7 - 1
Makefile

@@ -43,10 +43,16 @@ quicktest:
 testverbose:
 	(cd testproj; python manage.py test --verbosity=2)
 
-releaseok: pep8 autodoc test
+releaseok: pep8 autodoc test gitclean
 
 removepyc:
 	find . -name "*.pyc" | xargs rm
 
 release: releaseok ghdocs removepyc
 
+gitclean:
+	git clean -xdn
+
+gitcleanforce:
+	git clean -xdf
+