# Branching strategy

Inherits the process from <https://nvie.com/posts/a-successful-git-branching-model/>​‌

​​🌞 Good branch names:‌

* `nice-kebab-cased-titles`
* `fixes-footer-links`
* `4411290-setup-state-management-integration`
* `feature/new-design`
* `hotfix/db-connection`
* `release-1.2.3`

​​⛈ Bad branch names:‌

* `patch-1` - not enough context
* `camelCasedBranchNames` - camelcase
* `PascalCasedBranchNames` - pascal case
* `long-titles-above-80-chars-{.....}` - too long
* `#58/something` - shell understands it as comment

| Branching model                               | Merges                                               |
| --------------------------------------------- | ---------------------------------------------------- |
| ​​![](https://nvie.com/img/git-model@2x.png)​ | ​​![](https://nvie.com/img/merge-without-ff@2x.png)​ |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.podkrepi.bg/development/dev-guidelines/branching-strategy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
