The symbolism of github links does not exist.

Page build error with the following error:

The file was included in /_layouts/default.html, which is a symbolic link or does not exist in your directory _includes. For more information see https://help.github.com/articles/page-build-failed-file-is-a-symlink/ .

I can not find the symlink!

+4
source share
1 answer

A symlink is the term symbolic link , which is basically an extended shortcut. Symlinks are created during the github build process. They point to the files in your assembly. If you are not using the file to create your site, you can safely delete it.

If you need a symlinked file to create your site, make sure that the file or directory it refers to is in your repository.

To delete a file in git, use:

find . -type l -exec git rm --cached {} \;
0
source

Source: https://habr.com/ru/post/1673063/


All Articles