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`".
This commit is contained in:
committed by
Michael Minella
parent
8a44d5ed72
commit
2935c8062a
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user