## Adding files to be tracked by lfs and pushing it to remote repository ```sh git lfs track "*.psd" git add .gitattributes git add file.psd git commit -m "Add design file" git config http.version HTTP/1.1 git push origin main ``` ## Pulling an tracked file ```sh git pull origin master git lfs pull --include "file.psd" ```