Add Git LFS (#2)

This commit is contained in:
Mylloon 2022-01-25 12:53:14 +01:00
parent 447969d2ad
commit 691c0d03ad
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 15 additions and 0 deletions

View file

@ -167,3 +167,8 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
```bash ```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installTLDR.sh -O tmp.sh && bash tmp.sh; rm tmp.sh wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installTLDR.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
``` ```
- Installe Git LFS
```bash
wget -q --show-progress https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/installGitLFS.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
```

7
installGitLFS.sh Normal file
View file

@ -0,0 +1,7 @@
# Latest version
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
# Install
sudo apt install git-lfs -y
echo -e "\nGit LFS installed! 🎉"

View file

@ -41,6 +41,9 @@ then
# Install tldr # Install tldr
bash installTLDR.sh bash installTLDR.sh
# Install Git LFS
bash installGitLFS.sh
if grep "Ubuntu" /proc/version > /dev/null; if grep "Ubuntu" /proc/version > /dev/null;
then then
# Install Brave # Install Brave