Hello!!
This blog it's made with Hugo, and today I'm going to give you some tips for sync content and git project across different machines.
It's important know that when you pull your repo the submodules not pull with it. If you want to pull all include submodules you need to type this:
git clone --recursive url
If you have already cloned a repository and want to load it's submodules you need to type this:
git submodule update --init
Here I'm give you some links to explore and understading the submodules on git.
Top comments (0)