Windows用にgit-lfsをインストールしました。と の両方で私の道にあるようGit Bash
ですPowerShell
。ここからの出力は次のとおりですGit Bash
502618458@G13G3Q72E MINGW64 ~
$ which git-lfs
/c/Program Files/Git LFS/git-lfs
502618458@G13G3Q72E MINGW64 ~
$ git lfs version
git-lfs/1.4.4 (GitHub; windows amd64; go 1.7.3; git cbf91a9)
それでも、実行すると:
$ git lfs install
Updated pre-push hook.
Git LFS initialized.
pre-push
フックで次を取得します。
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
git lfs pre-push "$@"
pre-push
フックを削除して再インストールしようとしましたが、それでも同じ結果が得られます。
追跡する必要があるファイルをプッシュしてテストしました...使用git lfs track
、追加.gitattributes
、および追跡されたファイルですが、git-lfs ストレージではなく、通常の git リポジトリにプッシュされます。
git lfs install
適切なコンテンツをpre-push
フックに入れることができない理由や、回避策を知っている理由はありますか?