From c340c6914f954e55261c61d2418133d7f599f387 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 30 Sep 2014 09:09:50 +0100 Subject: [PATCH] Fix "rm -rf" instruictions Existing copy is wrong because "git rm -rf *" fails if there are any untracked files (e.g. target/). Changed to "git rm -rf `git ls-files`". --- README.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 8f3f7b981c..5a462d848f 100644 --- a/README.markdown +++ b/README.markdown @@ -15,8 +15,7 @@ From within your Spring project's git checkout directory: ### Remove all files - git rm -rf * - git rm -rf '.*' + git rm -rf `git ls-files` && rm -rf * ### Add the gh-pages-upstream remote