Browse Source

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`".
pull/507/head
Dave Syer 11 years ago
parent
commit
c340c6914f
  1. 3
      README.markdown

3
README.markdown

@ -15,8 +15,7 @@ From within your Spring project's git checkout directory: @@ -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

Loading…
Cancel
Save