GitXplorerGitXplorer
p

pfmaggi.github.io

public
4 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
a8576d174e7d85694088543994ea08a4f65eaf8b

Create PRIVACY

ppfmaggi committed a year ago
Verified
c6e456f8925f527702239994ab2cb6dea1c849e3

TestDPC v9.0.4 WIP

ppfmaggi committed a year ago
Verified
120cc80148a5d8628a8c3da64395abfcfbb0cba8

TestDPC v9.0.4 wip

ppfmaggi committed a year ago
Verified
b6a5217bad09b15df4fcc83cb7f6527da1867524

TestDPC 9.0.4 WIP

ppfmaggi committed a year ago
Verified
db165deabca53e910a91a688aa705fe8ed402dd1

TestDPC v9.0.4 wip

ppfmaggi committed a year ago
Verified
f68038f3c0deafcd93420e75a1ad7dcf47b31b81

Add testdpc interim build

ppfmaggi committed a year ago

README

The README file for this repository.

Personal blog

This repository contains the source for my personal blog.

To publish a new post

Create a new article in the ./content/post/ folder and push it to github.

A workflow monitors the pushes on the main branch and will take care of publishing the new version of the site.

For more information use Hugo's documentation.

To clone on a new PC

Given that the public folder and the themes I'm using are git submodules, you need to clone recursively to get both of them:

git clone git@github.com:pfmaggi/pfmaggi.github.io.git <blog_destination>
cd <blog_destination>
git submodule update --init --recursive

Updates to the themes

The themes are included as git submodules, with their own origin. Currently I'm using beautifulhugo, using my own fork and branch.

Whenever I update the theme, it is just another git repository, but I also need to update the main repository to update it's reference:

Make changes inside a submodule

  • cd inside the submodule directory.
  • Make the desired changes.
  • git commit the new changes.
  • git push the new commit.
  • cd back to the main repository.
  • In git status you'll see that the submodule directory is modified.
  • In git diff you'll see the old and new commit pointers.
  • When you git commit in the main repository, it will update the pointer.

Source of this information