Horje
auto git script Code Example
auto git script
#!/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 git@github.com:levicrews/$1.git
    git add .
    git commit -m "Initial commit"
    git push -u origin master
}




Shell

Related
nano line number Code Example nano line number Code Example
fedora secure boot Code Example fedora secure boot Code Example
Do you need to install EsLint after intalling the extension Code Example Do you need to install EsLint after intalling the extension Code Example
bash expect not working in crontab Code Example bash expect not working in crontab Code Example
anaconda install for kali linus Code Example anaconda install for kali linus Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11