bGraphic / a2-radius-child

Theme for A2's new web page
0 stars 0 forks source link

A2 Radius Child Theme

Radius is a Wordpress theme, and this is a child theme depending on it. The child theme is created for the company A2.

Installation

Make sure you have both the Radius theme and this theme in your Wordpress themes folder.

Development

Creating a feature branch

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>

Merging the feature branch into develop

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>

Create a release

To be continued.