Welcome to DolphinTech on GitHub! We are a passionate group of students from the Faculty of Systems Engineering and Informatics (FISI) at UNMSM dedicated to developing cutting-edge software. In our repository, you'll find exciting projects where we apply our technical and creative skills to create solutions that positively impact the world. Join us on our coding journey and discover DolphinTech's potential to shape the future! 🐬🚀
- GitFlow
main
: It is to contain ready code that can be released to production.develop
: It inherits changes from the main branch at startup, it is an exact copy of main.feature
: Its goal is to add new features and then merge with development.- You can start from:
develop
- You should be merged with:
develop
- Naming convention: feature-{NUMissue}
- You can start from:
release
: It is the production release branch.- You can start from:
develop
- You should be merged with: development and
main
- naming convention: release-{version}
- You can start from:
hotfix
: It is used to quickly address changes to the master branch.- You can start from:
main
- You should be merged with: development and
main
- Naming convention: hotfix-{NUMissue}
- You can start from:
Coming soon!!