I am trying to upload a Unity Project to GitHub using LFS. The size of the director is 306MB so I need to us LFS. It always freezes during the commit process which I quit with a control c. When I perform the push it goes then says "large files detected use LFS".
I perform the following steps where the directory is called "clickToMove"
git lfs install
git lfs track "clickToMove"
git add .gitattributes
git add file clickToMove
git commit -m "commitMessage"
git push origin master
I tried git lfs track "clickToMove.**" as per another Stack Overflow about the same issue I also tried doing git lfs track "clickToMove/Assets" git lfs track "clickToMove/Library" etc until all the subdirectories are tracked in the .gitattributes file
I get an error that says large files detected and to use LFS.