This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
font: | |
size: 12 | |
normal: | |
family: "MesloLGS NF" | |
offset: | |
y: 0 | |
window: | |
startup_mode: Maximized |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
directory=_site | |
branch=gh-pages | |
build_command() { | |
jekyll build | |
} | |
echo -e "\033[0;32mDeleting existing $branch...\033[0m" | |
git push origin --delete $branch | |
git branch -D $branch |