Complete the command to install Git LFS on your system.
git [1] installThe command git lfs install sets up Git LFS in your repository or globally.
Complete the command to track all files with the .psd extension using Git LFS.
git lfs [1] "*.psd"
The command git lfs track "*.psd" tells Git LFS to manage all Photoshop files.
Fix the error in the command to add the .mp4 files to Git LFS tracking.
git lfs [1] '*.mp4'
The correct command is git lfs track '*.mp4'. Misspelling 'track' causes an error.
Fill both blanks to commit the .zip files tracked by Git LFS with a message.
git add [1] && git commit -m [2]
You add the .gitattributes file which stores LFS tracking info, then commit with a clear message.
Fill all three blanks to push your Git LFS tracked files to the remote repository.
git [1] && git [2] && git [3] origin main
First add the .gitattributes file, then commit with a message, and finally push to the main branch.