Answers for "install git lfs on linux"

1

install git-lfs ubuntu 18.04

sudo apt update
sudo apt install git-lfs
Posted by: Guest on February-20-2021
0

git enable lfs

# Make sure to install the git lfs command line extension first.

# After installing the extension (if you haven't), enable it in your repo:
git lfs install
# You only need to run this once per user account.

# Use LFS for a file type (do this in your repo dir)
git lfs track "*.psd"

# Make sure to track this in your repo!
git add .gitattributes
Posted by: Guest on May-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language