This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
manjaroConfiguration/installGitLFS.sh

14 lines
300 B
Bash
Raw Normal View History

2022-02-15 09:26:55 +01:00
#!/usr/bin/env bash
2022-01-25 12:53:14 +01:00
# Latest version
2022-02-03 17:50:37 +01:00
# No available version for latest Ubuntu version
# curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
2022-01-25 12:53:14 +01:00
# Install
sudo apt install git-lfs -y
2022-01-25 12:58:30 +01:00
# Enable it
git lfs install
echo -e "\nGit LFS installed and enabled! 🎉"