sh_linux_installation_scripts/common/redhat/apps/git.sh

6 lines
84 B
Bash
Raw Normal View History

2021-11-24 09:41:28 +01:00
#!/bin/bash
install_git() {
echo "Installing git"
sudo dnf install git -y
}