After installing git lfs
v2.3.4 for Windows, and enabling my repo to use lfs
on all my .txt
extension files using the following.
git lfs track "*.txt"
git add .gitattributes
- Inside my .gitattributes,
*.txt filter=lfs diff=lfs merge=lfs -text
When I try to git add .
, git commit -m "initial commit"
, then finally git push
I get the following error:
Remote "origin" does not support the LFS locking API. Consider disabling it with:
$ git config lfs.https://github.com/0xdec0de5/super_kali_wordlist.git/info/lfs.locksverify false
After running the following, git config lfs.locksverify false
I get the following error:
batch response: Git credentials for https://github.com/0xdec0de5/super_kali_wordlist.git not found.
error: failed to push some refs to 'https://github.com/0xdec0de5/super_kali_wordlist.git'
Any help to resolve the error would be appreciated!