16 lines
184 B
Bash
16 lines
184 B
Bash
|
|
# Pull changes
|
|
git pull origin main
|
|
|
|
# Add
|
|
git add .
|
|
|
|
# commit
|
|
git commit -m "Rebuild"
|
|
|
|
# Push
|
|
git push origin main
|
|
|
|
# Rebuild
|
|
docker compose exec -it hugo hugo --cleanDestinationDir
|