Skip to content

Commit 795a0a3

Browse files
author
Aymin Jafari
committed
feat: add workflows/03-github-flow
1 parent e5ac5f9 commit 795a0a3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

github-flow.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# GitHub Flow
2+
3+
GitHub Flow is a lightweight workflow for continuous delivery.
4+
5+
## Steps
6+
1. Create a branch for each feature or fix.
7+
2. Make changes and commit:
8+
```bash
9+
git add .
10+
git commit -m "Add login feature"
11+
```
12+
3. Push the branch:
13+
```bash
14+
git push origin feature-login
15+
```
16+
4. Open a pull request (PR) for review.
17+
18+
5. Merge the PR and deploy.
19+
20+
## Explanation
21+
- Focuses on continuous integration and delivery.
22+
23+
- Simplifies the workflow for small teams.

0 commit comments

Comments
 (0)