Sha256: 724e1b1bd4c83b56ac6d4af0c8f7c2cb5bcac8234f70d737d5b2b72fe1ba2e3f
Contents?: true
Size: 952 Bytes
Versions: 4
Compression:
Stored size: 952 Bytes
Contents
# Branch naming convention ## Branch naming > Please note for new pull requests create new branches from current `develop` branch only. Branch name should include type of your contribution and context. Please follow next pattern for naming your branches: ```bash feature/add-some-feature technical/some-technical-improvements bugfix/fix-some-bug-name ``` ## Before PR actions ### Squash commits Please squash all branch commits into the one before opening your PR from your fork. It's simple to do with the git: ```bash git rebase -i [hash your first commit of your branch]~1 git rebase -i 6467fe36232401fa740af067cfd8ac9ec932fed2~1 # example ``` ### Add commit description Please complete your commit description following next pattern: ```code Technical/Add info files # should be the same name as your branch name * Added license, changelog, contributing, code of conduct docs * Added GitHub templates * Updated project license link ```
Version data entries
4 entries across 4 versions & 2 rubygems