Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javieraviles/git-flow
Example exercise of how to apply gitflow methodology
https://github.com/javieraviles/git-flow
example gitflow gitflow-methodology how-to tutorial
Last synced: 25 days ago
JSON representation
Example exercise of how to apply gitflow methodology
- Host: GitHub
- URL: https://github.com/javieraviles/git-flow
- Owner: javieraviles
- Created: 2020-05-23T08:33:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T14:10:57.000Z (over 4 years ago)
- Last Synced: 2024-11-08T10:51:34.163Z (3 months ago)
- Topics: example, gitflow, gitflow-methodology, how-to, tutorial
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code&Bricks E-commerce using git flow
**This is an example exercise**. The company Code&Bricks wants to develop a new E-commerce webapp. The dev team will develop a first `1.0.0` version including three features. Each of them will be released as soon as its developed.
All involved branches are pushed and left untouched so the exercise looks as clear as possible.
- [Timeline:](#timeline)
- [Git History](#git-history)
- [Changelog](#changelog)
- [Release 0.1.0](#release-010)
- [Release 0.2.0](#release-020)
- [Release 0.2.1](#release-021)
- [Release 1.0.0](#release-100)## Timeline:
- f1 feature should be developed and delivered as soon as possible (release 0.1.0)
- f2 and f3 are developed in parallel
- f2 gets finished and released (release 0.2.0)
- a bug is found in prod, hotfix delivered (release 0.2.1)
- f3 gets finished and released, taking care of conflicts and including hotfix (1.0.0)## Git History
![Git History](git_history.PNG)## Changelog
### Release 0.1.0
- New Feature 1
### Release 0.2.0
- New Feature 2
### Release 0.2.1
- Fix for Feature 2 bug
### Release 1.0.0
- New feature 3