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:

  1. Outside your blog folder create an empty file.
  2. Rename it to deploy.sh
  3. 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
  1. 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