-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitmessage
More file actions
40 lines (36 loc) · 1.68 KB
/
gitmessage
File metadata and controls
40 lines (36 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
chore(save): workflow checkpoint
# Tipos de commit y sus propósitos:
# | Tipo | Propósito |
# |------------|-----------|
# | `feat` | Nueva funcionalidad (feature) para el usuario |
# | `fix` | Corrección de errores (bug fixes) |
# | `docs` | Cambios en la documentación |
# | `style` | Cambios de estilo (espacios, indentación, formato) sin afectar el código |
# | `refactor` | Cambios en el código que no arreglan ni agregan funcionalidad |
# | `perf` | Mejoras de rendimiento (performance) |
# | `test` | Añadir o corregir pruebas (tests) |
# | `build` | Cambios que afectan el sistema de construcción o dependencias externas |
# | `ci` | Cambios en archivos de integración continua |
# | `chore` | Tareas menores o mantenimiento (no afectan código de producción) |
# | `revert` | Revertir un commit anterior |
# Ejemplos:
# feat(auth): add OAuth2 authentication
# fix(api): resolve rate limiting issue
# docs(readme): update installation steps
# style(lint): fix code formatting
# refactor(utils): improve error handling
# perf(database): optimize query performance
# test(api): add authentication tests
# build(deps): update npm dependencies
# ci(github): add GitHub Actions workflow
# chore(config): update ESLint rules
# revert(api): revert breaking changes
# El mensaje debe seguir el formato: <type>(<scope>): <description>
# - type: tipo de cambio (feat, fix, docs, etc.)
# - scope: área afectada (opcional)
# - description: descripción breve del cambio
# - El mensaje debe estar en inglés
# - La descripción debe comenzar con minúscula
# - No debe terminar con punto
# - Debe ser conciso y descriptivo
# Escribe tu mensaje de commit aquí: