6ca66366d5
When using the theme starter, which uses a git submodule, assets loaded from that submodule are "untracked" files in the pages branch working tree. The build can fail at this line due to Git, saying "the following untracked working tree files would be overwritten by checkout". Adding `-f` forces the checkout, overwriting all files. The other deploy steps then take over and rewrite the files as needed.
21 lines
220 B
Text
21 lines
220 B
Text
# hidden files
|
|
.*
|
|
!.git*
|
|
!.editorconfig
|
|
!.nojekyll
|
|
!.travis.yml
|
|
!.husky
|
|
!.commitlintrc.json
|
|
!.versionrc.json
|
|
|
|
# bundler cache
|
|
_site
|
|
vendor
|
|
Gemfile.lock
|
|
|
|
# rubygem
|
|
*.gem
|
|
|
|
# npm dependencies
|
|
node_modules
|
|
package-lock.json
|