Add Git LFS (#2)
This commit is contained in:
parent
447969d2ad
commit
691c0d03ad
3 changed files with 15 additions and 0 deletions
|
@ -167,3 +167,8 @@ Mon guide à suivre lors d'une réinstallation d'Ubuntu
|
|||
```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
|
||||
```
|
||||
|
||||
- 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
7
installGitLFS.sh
Normal 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! 🎉"
|
|
@ -41,6 +41,9 @@ then
|
|||
# Install tldr
|
||||
bash installTLDR.sh
|
||||
|
||||
# Install Git LFS
|
||||
bash installGitLFS.sh
|
||||
|
||||
if grep "Ubuntu" /proc/version > /dev/null;
|
||||
then
|
||||
# Install Brave
|
||||
|
|
Reference in a new issue