skrip git otomatis

#!/bin/bash
function project() {
    cd /home/levicrews
    cp -a /home/levicrews/template-project $1
    python3 create_project.py $1
    cd /home/levicrews/$1
    git init
    git remote add origin [email protected]:levicrews/$1.git
    git add .
    git commit -m "Initial commit"
    git push -u origin master
}
conjunction cell