We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ac5f9 commit 7f1e19aCopy full SHA for 7f1e19a
git-flow.md
@@ -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