5 lines
66 B
Bash
5 lines
66 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_git() {
|
||
|
sudo apt-get install git-all -y
|
||
|
}
|