eShopOnContainers/branch-guide.md

14 lines
775 B
Markdown
Raw Normal View History

2017-08-01 15:21:51 +02:00
# eShopOnContainers - BRANCH GUIDE
Following are the most important branches:
2021-11-10 16:56:01 +05:30
- `dev`: Contains the latest code **and it is the branch actively developed**. Note that **all PRs must be against the `dev` branch to be considered**. This branch is developed using `.NET 6`
- `release/net-5`: Contains the code changes specific to the `.NET 5`
- `release/net-3.1.1`: Contains the code changes specific to the `.NET 3.1`
> [!DISCLAIMER]: The `main` branch contains the old code base and will get obsolete in the future. So it's recommended to refer to different [tags](https://github.com/dotnet-architecture/eShopOnContainers/tags) to avoid any confusion.
2017-08-01 15:21:51 +02:00
Any other branch is considered temporary and could be deleted at any time. Do not submit any PR against them!
2017-08-01 15:21:51 +02:00
Thanks!