11 lines
144 B
Bash
11 lines
144 B
Bash
|
#! /usr/bin/bash
|
||
|
|
||
|
echo "Enter Commit Comment"
|
||
|
read comment
|
||
|
|
||
|
bundle exec jekyll build
|
||
|
|
||
|
git add -A
|
||
|
git commit -m $comment
|
||
|
git push -u origin main
|