viernes, 27 de junio de 2025

Development Workflow

  1. Create a new branch from develop
    git pull
    Replace:
    <branchStrategy> with feature, bugfix, release, hotfix
    <module> with backend, frontend, ml, docs, infrastructure
    git checkout -b <branchStrategy>/<module>-<description> develop
    Example: git checkout -b feature/backend-pdf-handler develop

  2. Make your changes on the files, and upload to the repo.
    git add <file>
    Replace <type> with a Commit Message type, check the top table Commit Message Type.
    git commit -m '<type>: Add basic pdf handler.'
    Example: git commit -m 'feat: Add basic pdf handler.'
    git status
    git push --set-upstream origin <branchStrategy>/<module>-<description>
    Example: git push --set-upstream origin feature/backend-pdf-handler

  3. Write/update tests

  4. Update documentation

  5. Submit a pull request

No hay comentarios:

Publicar un comentario