Radius is a Wordpress theme, and this is a child theme depending on it. The child theme is created for the company A2.
Make sure you have both the Radius theme and this theme in your Wordpress themes folder.
style.css
with the new version number.To create a feature branch make sure you are standing in develop.
git checkout develop
git pull origin
git checkout -b feature/<my-new-feature>
To share the branch with others on the team push the branch to Github.
git push -u feature/<my-new-feature>
git checkout develop
git pull origin
git merge --no-ff -m "Merging my feature into develop"
git branch -d feature/<my-new-feature>
git push origin
If you have shared the branch by pushing it to Github, remember to delete it.
git branch push origin :feature/<my-new-feature>
To be continued.