Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b0cf8eb

Browse files
committedMar 24, 2024
feat : README.md gitflow 추가
1 parent 938c24f commit b0cf8eb

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
 

‎README.md

+41
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# index
1212

1313
- [outline](#outline)
14+
- [gitflow](#gitflow)
1415
- [architecture](#architecture)
1516

1617
# outline
@@ -19,6 +20,46 @@ Study, project, and mentoring platform used by programmers, planners, and design
1920

2021
<br/><br/>
2122

23+
# Gitflow
24+
25+
> Describes JIRA-based gitflow
26+
27+
1. Create a JIRA ticket before you start working.
28+
29+
2. One ticket should preferably be a single commit.
30+
31+
3. Keep the commit graph as simple as possible.
32+
33+
4. Don't change the revision history of branches you share with each other.
34+
35+
5. Make sure to get reviews from reviewers.
36+
6. merge your own pull requests.
37+
38+
```mermaid
39+
gitGraph
40+
commit
41+
branch MOCO-01
42+
checkout MOCO-01
43+
commit
44+
commit
45+
checkout main
46+
merge MOCO-01
47+
branch MOCO-02
48+
checkout MOCO-02
49+
commit
50+
commit
51+
checkout main
52+
merge MOCO-02
53+
branch MOCO-03
54+
checkout MOCO-03
55+
commit
56+
commit
57+
checkout main
58+
merge MOCO-03
59+
```
60+
61+
<br/>
62+
2263
# Architecture
2364

2465
![aws-architecture](https://github.com/wlswo/wlswo.github.io/blob/main/assets/images/SideProject/side%236/moco-aws-architecture.png?raw=true)

0 commit comments

Comments
 (0)
Please sign in to comment.