mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-25 13:32:30 +00:00
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:
parent
77167c0d39
commit
c340c6914f
@ -15,8 +15,7 @@ From within your Spring project's git checkout directory:
|
|||||||
|
|
||||||
### Remove all files
|
### Remove all files
|
||||||
|
|
||||||
git rm -rf *
|
git rm -rf `git ls-files` && rm -rf *
|
||||||
git rm -rf '.*'
|
|
||||||
|
|
||||||
### Add the gh-pages-upstream remote
|
### Add the gh-pages-upstream remote
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user