mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
18 lines
282 B
Bash
18 lines
282 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function create() {
|
||
|
cd
|
||
|
source .env
|
||
|
python create.py $1
|
||
|
cd $FILEPATH$1
|
||
|
git init
|
||
|
git remote add origin git@github.com:$USERNAME/$1.git
|
||
|
touch README.md
|
||
|
git add .
|
||
|
git commit -m "Initial commit"
|
||
|
git push -u origin main
|
||
|
code .
|
||
|
}
|
||
|
|
||
|
|