sh_linux_installation_scripts/common/apps/git.sh

6 lines
88 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"
sudo apt-get install git -y
2021-03-07 17:40:20 +01:00
}