sh_linux_installation_scripts/common/debian/apps/git.sh

6 lines
84 B
Bash
Raw Normal View History

2021-03-07 17:40:20 +01:00
#!/bin/bash
install_git() {
2021-07-13 10:13:51 +02:00
echo "Installing git"
2021-11-24 09:13:58 +01:00
sudo apt install git -y
2021-03-07 17:40:20 +01:00
}