I've just pushed my first repo to github but when I browse my html it is served as txt. Is this something that I can set similar to svn's props? Or is this simply a github inadequacy?
I can't seem to find anything on git, github or here that helps.
|
|
|
Git, unlike SVN is not concerned with individual files, rather with commits so I believe you cannot set mime-type props on files. On the other hand, github is a "code hosting site", which manages your code repositories and is only concerned about showing code. The exception from this rule is README files, where you can sort-of specify different formats (like .markdown) and render them as semi-HTML and wiki pages. If what you want is to host your HTML files (like in a webserver) then github is not the place to do it. Rather, you can keep your files under github's version control, but check out and serve them from a webserver like apache. |
|||||||||||
|
|
First, Subversion supports (versioned) properties (simple key=value pairs) on files, directories and revisions. This includes The closest equivalent of Subversion's file properties in Git would be gitattributes (per-path attributes). You could define Second, mime-types or mimetype-like property or attribute is not really necessary. Gitweb (and probably other git interfaces) use file with extension to mimetype mapping ( It's the lack in GitHub web interface that http://github.com/git/git/raw/html/gitattributes.html is served with 'text/plain' content-type... |
|||||
|
|
File extension to mime-type mapping is, at best, a broken workaround. Two examples among many. Prolog used the .pl extension long before Perl existed. Files with a .txt extension may contain e.g. Markdown text and there often are good reasons to not use a .md or similar extension. |
|||
|
|