You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2026. It is now read-only.
Cloning into 'frames-to-video'...
remote: Enumerating objects: 101, done.
remote: Counting objects: 100% (16/16), done.
remote: Compressing objects: 100% (16/16), done.
remote: Total 101 (delta 5), reused 2 (delta 0), pack-reused 85 (from 2)
Receiving objects: 100% (101/101), 25.50 MiB | 6.54 MiB/s, done.
Resolving deltas: 100% (9/9), done.
error: invalid path 'examples/i2v-A14B_1280*720_8_Aa_clown,_slowly_transforms_into_a_poster._20251022_231821.mp4'
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry with 'git restore --source=HEAD :/'
When cloning the repository on Windows, Git fails to check out the working tree because two files in the examples/ folder contain the * (asterisk) character, which is not supported in NTFS filenames.
to bypass can clone without examples folder:
git clone -n https://github.com/morphicfilms/frames-to-video.git
cd frames-to-video
git config core.protectNTFS false
git ls-tree -r HEAD --name-only | grep -v '^examples/' > filelist.txt
git checkout HEAD -- $(cat filelist.txt)
or propose fix:
Rename or remove the offending files (replace * with x or _)
When cloning the repository on Windows, Git fails to check out the working tree because two files in the
examples/folder contain the*(asterisk) character, which is not supported in NTFS filenames.to bypass can clone without examples folder:
or propose fix: