2

当我在 github 上创建一个项目时,我设置了一个 README 文件,该文件现在出现在项目页面上。我决定切换到 Readme.md 以便我可以添加一些格式,但 github 仍在显示原始 README 文件。我尝试删除 README 并同时删除 README 和 Readme.md,然后重新添加 Readme.md,但原始 README 仍在项目页面上。

https://github.com/toxygene/pale

4

1 回答 1

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(&quot;this will become an exception&quot;);
    });
} catch(ErrorException $e) {
    var_dump($e);
}
```
</pre></div>

cache key: tree-readme:2188350:07c9301...”表示该页面的内容可能会在接下来的几个小时内更新。

于 2012-12-12T18:26:05.793 回答