Explorar o código

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`".
Dave Syer %!s(int64=11) %!d(string=hai) anos
pai
achega
c340c6914f
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      README.markdown

+ 1 - 2
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