Github not update `raw` after commit

Viewed 9378

Updated: Seem it has about 5 minutes to update raw. I will close my question at here.

I have a problem with Github.

I want to get the file as raw format.

I add new commit and my file is updated.

Look like this:

I add JUST keyword in variable tech.

When I click raw. It keeps the previous version.

Look like this:

Have any method to get raw version of the file was commit.

1 Answers

GitHub serves "raw" pages with Cache-Control: max-age=300. That's specified in seconds, meaning the pages are intended to be cached for 5 minutes.

You can see this if you open the Developer Tools in your web browser of choice before clicking the "Raw" button on GitHub.

Related