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 に答える