如何使用vscode 推送大文件,首先當(dāng)然安裝github,其次安裝git Large file storage:
https://git-lfs.github.com/
.gitignor設(shè)置無效的問題:
主要原因是.gitignor文件只會忽略未被tracking的文件,那么使用git rm --cache file然后git commit來釋放該文件。釋放整個文件夾的時候需要加一個參數(shù)-r ,git rm -r --cache directory/
https://stackoverflow.com/questions/6380196/gitignore-does-not-work