在Github上将README更改为Readme.md
当我在github上创建项目时,我设置了一个README文件,该文件现在出现在项目页面上。 我决定切换到Readme.md,所以我可以添加一些格式,但github仍然显示原始的README文件。 我尝试删除自述文件并删除自述文件和Readme.md,然后重新添加Readme.md,但原始自述文件仍在项目页面上。
https://github.com/toxygene/pale
这可能是一个缓存问题,因为你的GitHub项目页面的源代码包括:
<!-- readme cache key: tree-readme:2188350:07c93010a313c998bb0d7c69f54b7d50525ca75e -->
<div id="readme" class="clearfix announce instapaper_body ">
<span class="name"><span class="mini-icon mini-icon-readme"></span> README</span>
<div class="plain"><pre># Pale
Pale is a simple PHP library that allows a developer to easily convert errors to exceptions without having to worry about the details of changing and restoring error handlers.
## Usage
```php
use Pale;
try {
Palerun(function() {
trigger_error("this will become an exception");
});
} catch(ErrorException $e) {
var_dump($e);
}
```
</pre></div>
“ cache key: tree-readme:2188350:07c9301...
”表示该页面的内容可以在接下来的几个小时内更新。