Go to file
tiendat3699 93f788d5be Merge branch 'release/1.0.0' 2024-07-15 09:28:53 +07:00
.creator Initial commit 2024-02-28 09:19:33 +07:00
.vscode feat: add gacha booster 2024-06-11 11:35:13 +07:00
assets chore 2024-07-11 17:08:49 +07:00
build-templates feat: update animation 2024-04-22 09:04:58 +07:00
extensions/excel-extension feat: dynamic sprite load 2024-05-15 16:44:01 +07:00
preview-template feat: game time scale 2024-06-07 14:08:39 +07:00
settings chore: update coin icon 2024-06-27 15:30:16 +07:00
.gitignore chore 2024-05-07 17:20:37 +07:00
.prettierrc feat: update effect 2024-02-28 18:25:11 +07:00
README.md chore: update readme 2024-05-08 10:23:59 +07:00
package-lock.json refactory: refactory object pool 2024-06-09 19:12:08 +07:00
package.json release version 1.0.0 2024-07-15 09:28:26 +07:00
tsconfig.json feat: update booster 2024-03-29 10:35:44 +07:00

README.md

Git work flow

  1. Nếu lần đầu clone dự án về máy cần phải tạo git flow cho repo ở local bằng cmd git flow init. Sau khi chạy lệnh, sẽ xuất hiện câu hỏi để config git flow cho dự án, cứ tiếp tục enter qua tất cả câu hỏi để sử dụng các config mặc định.
  2. Tạo nhánh feature từ develop bằng cmd git flow feature start <feature-name>. Nhánh feature sẽ được tạo ở local từ nhánh develop.
  3. Để publish nhánh feature lên remote dùng cmd git flow feature publish <feature-name>.
  4. Sau khi làm xong feature. Truy cập vào git tạo pull request, đợi review approve để merge feature vào nhánh develop (không xóa nhánh feature). Sau khi merge thành công, quay về local checkout về lại develop, pull code mới nhất về. R nhập cmd git flow feature finish <feature-name> để xóa nhánh feature ở cả local và remote.
  5. Tham khảo thêm về git flow https://danielkummer.github.io/git-flow-cheatsheet/index.vi_VN.html

Git commit message prefixes

  • [feat]: Tính năng mới.
  • [fix]: Sửa lỗi.
  • [chore]: Chỉnh sửa nhỏ, việc vặt, không thay đổi code ở bản build.
  • [doc]: Thêm, cập nhật doc.
  • [dist]: Thêm package mới.
  • [style]: Chỉnh sửa liên qua đến style code, syntax cho đẹp gọn hơn mà không thay đổi về logic game.
  • [perf]: Cập nhật liên quan đến cải thiện hiệu suất.
  • [test]: Thêm test, không thay đổi code ở bản build
  • [refactory]: Tái cấu trúc dự án, những thay đổi về code không ảnh hưởng đến tính năng từ phía của user.