6 lines
96 B
Bash
6 lines
96 B
Bash
#!/bin/bash
|
|
|
|
install_git() {
|
|
echo "Installing git-all"
|
|
sudo apt-get install git-all -y
|
|
} |