Skip to content

Commit 7f1e19a

Browse files
author
Aymin Jafari
committed
feat: add workflows/02-git-flow
1 parent e5ac5f9 commit 7f1e19a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

git-flow.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Git Flow
2+
3+
Git Flow is a branching model for managing releases.
4+
5+
## Branches
6+
- `main`: Stable production code.
7+
- `develop`: Integration branch for features.
8+
- `feature/`: Branches for new features.
9+
- `release/`: Branches for preparing releases.
10+
- `hotfix/`: Branches for urgent fixes.
11+
12+
## Usage
13+
- Use `git flow init` to initialize Git Flow.
14+
- Follow the Git Flow commands for feature, release, and hotfix branches.
15+
16+
## Example
17+
```bash
18+
git flow feature start login
19+
```

0 commit comments

Comments
 (0)