STAY INFORMED
following content serves as a personal note and may lack complete accuracy or
certainty.
Minimal-Mistakes instruction
Useful vscode Shortcut Keys
Unix Commands
npm Commands
Vim Commands
Git Note
Useful Figma Shortcut Keys
Push Unreal Engine Project to Github
Install and Setting
Install Git Large File Storge(LFS)
git lfs install
Specify the file type to manage
git lfs track "*.uasset"
git lfs track "*.umap"
git lfs track "*.png"
git lfs track "*.jpg"
git lfs track "*.wav"
git lfs track "*.mp4"
Push
git add .gitattributes
git add .
git commit -m "Set up Git LFS for Unreal Engine"
git lfs push --all origin main
git push origin main
Check LFS is set
git lfs ls-files
Pull or Clone
git clone https://your-repo-url.git
git lfs pull
Trouble Shooting
Fix Git LFS objects missing
git lfs fetch --all
git lfs pull
If .gitattributes file is gone
git lfs track "*.uasset"
git add .gitattributes
git commit -m "Fix Git LFS tracking"
git push origin main