The vcsclean script is really only a wrapper for a git clean command.
Developers should use the more proper and clear native Git command
directly instead:
`git clean -Xfd`
md5sum $$distname.tar.bz2; \
bzip2 -t $$distname.tar.bz2
-gitclean-work:
- @if (test ! -f '.git/info/exclude' || grep -s "git-ls-files" .git/info/exclude); then \
- (echo "Rebuild .git/info/exclude" && echo '*.o' > .git/info/exclude && git svn propget svn:ignore | grep -v config.nice >> .git/info/exclude); \
- fi; \
- git clean -X -f -d;
-
.PHONY: snapshot
+++ /dev/null
-#! /bin/sh
-
-if test -d '.git' -o -f '.git'; then
- ${MAKE:-make} -f build/build.mk gitclean-work
-else
- echo "Can't figure out your VCS, not cleaning."
-fi