Przeglądaj źródła

Added gitclean + gitcleanforce to Makefile

Ask Solem 15 lat temu
rodzic
commit
7c933288ac
1 zmienionych plików z 7 dodań i 1 usunięć
  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
+