Skip to content

Commit d4acdc8

Browse files
committed
Make it possible to check out this repository on Windows
On Windows, colons are not allowed in filenames, and neither are question marks. Let's just rename the files whose filenames contain colons or question marks (simply removing them, there are no collisions). The affected files (all in the ProGit book) already contain `url` attributes in the front matter, meaning: Hugo will use the correct filename in the rendered output, and therefore the end result is the same as before. This trick was performed by git -c core.quotePath=false ls-files | grep ':' | while read path do git mv --sparse "$path" "${path/:/}" || break done and git -c core.quotePath=false ls-files | grep '?' | while read path do git mv --sparse "$path" "${path/\?/}" || break done Signed-off-by: Johannes Schindelin <[email protected]>
1 parent a6a37a3 commit d4acdc8

File tree

683 files changed

+0
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

683 files changed

+0
-0
lines changed

0 commit comments

Comments
 (0)