提交 c340c691 编写于 作者: D Dave Syer

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`".
上级 77167c0d
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册