Skip to content

Branches

Andrej Sharapov edited this page Nov 14, 2022 · 7 revisions

Branch naming

Each new branch must contain one of the following prefixes:

Branch Description
comp/ Edit or create new components
config/ Changes or additions related to the configuration and various site settings
docs/ Documentation only changes
feat/ A new feature
fix/ In any incomprehensible situation
style/ Add, bug fix and update styles
page/ Update or create a new page
nuxt/ Update or addition related directly to nuxt, example, adding nuxt modules
refactor/ A code change that neither fixes a bug nor adds a feature
test/ Adding missing tests or correcting existing tests

Fast merge (through DEVELOP branch)

$ git checkout master && git pull && git checkout develop && git merge master
$ git branch README develop && git checkout README
# or
$ git checkout -b README develop
# Development
$ git add . && git commit -m ".md" && git push -u origin README:develop
# Pull Request
$ git checkout develop && git pull
# Development, testing, prerelease
$ git add . && git commit -m ".md" && git push
Clone this wiki locally