LinuxScripts/jekyllBuildAndPush.sh

11 lines
154 B
Bash
Raw Normal View History

2023-12-18 19:00:38 +00:00
#! /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