git lfs를 설치하고, Add
하고 push
할려고 하면 아래와 같은 아래가 발생합니다.
Remote "origin" does not support the LFS locking API. Consider disabling it with:
$ git config lfs.url
Uploading LFS objects: 0% (0/1), 0 B | 0 B/s, done.
batch request: url: Permission denied (publickey).: exit status 255
error: failed to push some refs to 'url'
제 경우에는 Windows Terminal에서 Git bash
프로필을 추가해서 사용중이었습니다.
이럴땐 Git Bash
로 실행해 push
해주면 됩니다.
Locking support detected on remote "origin". Consider enabling it with:
$ git config lfs.url
Uploading LFS objects: 100% (1/1), 279 MB | 37 MB/s, done.
Enumerating objects: 6, done.
Counting objects: 100% (6/6), done.
Delta compression using up to 16 threads
Compressing objects: 100% (4/4), done.
Writing objects: 100% (6/6), 622 bytes | 622.00 KiB/s, done.
Total 6 (delta 0), reused 0 (delta 0)
To url
* [new branch] master -> master
Git Lfs 저장소 이슈에서 달린 코멘트입니다.
댓글