update documents
This commit is contained in:
25
DEV_WORKFLOW.md
Normal file
25
DEV_WORKFLOW.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# Developer Workflow
|
||||
|
||||
Workflow tiêu chuẩn:
|
||||
|
||||
Issue → Branch → Code → Commit → Push → Pull Request → Review → Merge
|
||||
|
||||
## Clone repo
|
||||
git clone http://gitea.company.com/project/chat-system.git
|
||||
cd chat-system
|
||||
|
||||
## Pull code
|
||||
git checkout main
|
||||
git pull origin main
|
||||
|
||||
## Tạo branch
|
||||
git checkout -b feature/new-feature
|
||||
|
||||
## Commit
|
||||
git add .
|
||||
git commit -m "feat(module): add new feature"
|
||||
|
||||
## Push
|
||||
git push origin feature/new-feature
|
||||
|
||||
## Tạo Pull Request trên Gitea và chờ review.
|
||||
Reference in New Issue
Block a user