Yes there are too many codes to just deploy your post, now to tackle that hassle we will create a code to upload everything with just one line. In order to go thorough you need to configure your default credentials. Here is a Stack Overflow Link for time being, before i post. Steps:
- Outside your blog folder create an empty file.
- Rename it to deploy.sh
- Now we need to edit the code, you can copy the code below. Make sure you change the name of the directories.
#!/bin/bash
cd notes
hugo
git add .
git commit -m "new post"
git push origin main
cd public
git add .
git commit -m "new post"
git push origin main
- Now let’s make the file executable
chmod u+x deploy.sh
5.Open the terminal and run./deploy.sh
If you have set global credentials your new post will be uploaded within 1-2 minutes. Enjoy!
Note: Get full detail on Hugo To Github