Awesome-Python-Scripts/git_automation/.my_commands.sh
Akshath fdf0ccb570 Revert "Resolving conflict"
This reverts commit a0d4e04a3c.
2023-10-25 10:14:56 +05:30

18 lines
282 B
Bash
Executable File

#!/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 .
}