Not much here yet, but feel free to add a new section with Git related information below.
Since we have Satus, we should always try to use it as a base for our projects, to keep it simple we've created branches with specific functionality, i.e. with-shopify
, with-contentful
. Here's a simple guide on how to use those branches and update them with the latest goodies from Satus
- Go to the template and click 'use this template' button.
- Create a new project and check 'Include all branches' option.
- Turn the branch on the new project you want to use into
main
. You can do it from Github branches or rebasing/merging. - Add template as remote using
git remote add template [repository URL]
To pull changes from template branch "example":
git checkout -b example
git pull template example
git switch main
git rebase example
git push --force