### Install Git LFS Source: https://git-lfs.com Installs Git LFS for your user account. This command only needs to be run once per user. ```bash git lfs install ``` -------------------------------- ### Commit and Push Files with Git LFS Source: https://git-lfs.com Adds a file to Git, commits it with a message, and pushes it to the origin. Git LFS handles large files automatically after tracking is set up. ```bash git add file.psd git commit -m "Add design file" git push origin main ``` -------------------------------- ### Track File Types with Git LFS Source: https://git-lfs.com Configures Git LFS to manage specific file types. Ensure the .gitattributes file is tracked by Git. ```bash git lfs track "*.psd" ``` ```bash git add .gitattributes ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.