728x90
Huggingface Spaces에 모델 파일을 git push 하는 과정에서 다음과 같은 에러가 발생했다.
remote: -------------------------------------------------------------------------
remote: Your push was rejected because it contains binary files.
remote: Please use https://git-lfs.github.com/ to store binary files.
remote: See also: https://hf.co/docs/hub/repositories-getting-started#terminal
remote:
remote: Offending files:
remote: - gesture_recognizer.task (ref: refs/heads/main)
remote: -------------------------------------------------------------------------
To https://huggingface.co/spaces/jk042386/gesture_recognition
! [remote rejected] main -> main (pre-receive hook declined)
보듯이 binary file이 거부되었다는 내용인데, 다음과 같이 확장자를 지정하여 실행해주면 정상적으로 push가 된다.
git lfs migrate import --everything --include "*.task"
git push origin main --force
728x90
'Temp' 카테고리의 다른 글
[AWS] EC2(Public Subnet)와 RDS(Private Subnet) 설정 (2) | 2024.03.27 |
---|---|
Git과 Slack 연동으로 알림 받기 (0) | 2024.02.16 |
IntelliJ 업데이트 후 Intellisense(Code Completion)이 작동하지 않는 경우 (0) | 2024.01.22 |
[CodeDeploy] 배포시 저장되는 파일 개수를 지정하여 용량 절약 (0) | 2024.01.02 |
신입 개발자에게 자료구조와 알고리즘이 중요한 이유 (0) | 2023.11.08 |