Describe the bug
When trying to clone this repo on windows, I've came across an error
error: invalid path '.github/pull_request_template.md.'
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 :/
To Reproduce
- Be on a Windows machine
- Fork the repo
- git clone %repo%
Expected behavior
The repository should be cloned
Solution
Obviously the issue lies on the .github/pull_request_template.md. file so if that file is removed, it should work fine. Otherwise, another possible alternative would be:
- git init ToDo-iOS && cd ToDo-iOS
- git config core.protectNTFS false
- git remote add %repository_url%
- git fetch
- git checkout origin/master
Describe the bug
When trying to clone this repo on windows, I've came across an error
To Reproduce
Expected behavior
The repository should be cloned
Solution
Obviously the issue lies on the .github/pull_request_template.md. file so if that file is removed, it should work fine. Otherwise, another possible alternative would be: