当我在github上创建一个项目时,我设置了一个README文件,该文件现在出现在项目页面上。我已经决定切换到Readme.md,所以我可以添加一些格式,但github仍然显示原始的README文件。我已经尝试删除README并删除README和Readme.md,然后重新添加Readme.md,但原始README仍在项目页面上。
答案 0 :(得分:2)
这可能是缓存问题,因为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 {
Pale\run(function() {
trigger_error("this will become an exception");
});
} catch(ErrorException $e) {
var_dump($e);
}
```
</pre></div>
“cache key: tree-readme:2188350:07c9301...
”表示该网页的内容可能会在接下来的几个小时内更新。