.gitconfig and includeIf Statements
··3 mins
Using different machines to work on some git files can result in missing signign keys and some headache.
As a reminder for my future self: If one clones a repository to a new location, the submodules are not cloned automatically. They need to be initialized and updated once, in order to show the proper content.
git submodule init
git submodule update
If the theme is a submodule and the customizations are in a different branch, one needs to switch to that particular branch as well. D’oh!
git checkout live
I found out that my current setup doesn’t allow for easy theme updates by the author, since I just cloned the theme folder into my hugo project âīšâ
But thanks to Adam and his introduction to gits submodule function I was able to work around this.
git submodule add -f https://github.com/<user>/hugo-theme-terminal.git themes/terminal
git remote add upstream https://github.com/panr/hugo-theme-terminal.git
My workflow for theme updates now looks like this: