How to solve the problem of missing files in git clone?

  1. errors in git clone projects

    warning: Clone succeeded, but checkout failed.
    You can inspect what was checked out with "git status"
    and retry the checkout with "git checkout -f HEAD"
    
  2. after searching, it is found that it is a file with a aux name in the project , and none of the files have been pulled down since that file
  3. There are some reserved words under
  4. windows, and aux is one of them, so you cannot create a file with that name.
  5. how do I pull the rest of the files and ask for advice!
Git
Aug.27,2021

under the zip package, the aux file will be automatically renamed during the decompression process, and then manually copied back to the project directory.

if there are windows developers in the development team, discuss with you to completely rename this file.


if you have permission for this repository, you can change the name of the file directly on the remote git repository.
if you don't have this permission, you can only download the file with zip and try it

.
Menu