-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Contribución al Proyecto | ||
|
||
¡Gracias por tu interés en contribuir al proyecto! Tu colaboración es muy valorada. A continuación, te proporcionaré una guía para hacerlo: | ||
|
||
## 🤔 Cómo Contribuir | ||
|
||
1. Asegúrate de tener una cuenta de GitHub. Si no la tenés, podés crear una por [acá](https://github.com/). | ||
2. Hacé un fork de este repositorio a tu cuenta de GitHub. | ||
3. Cloná tu repositorio fork en tu máquina local: | ||
|
||
```bash | ||
git clone https://github.com/TU_USUARIO/gamejam-tools.git | ||
cd gamejam-tools | ||
``` | ||
|
||
4. Creá una rama nueva para tu contribución: | ||
|
||
```bash | ||
git checkout -b tu-rama | ||
``` | ||
|
||
5. Agregá el recurso siguiendo el formato: | ||
|
||
```markdown | ||
- [Tipo de Recurso: Recurso](<https://ejemplo.com/recurso>) | ||
``` | ||
|
||
6. Realizá un commit con un mensaje descriptivo: | ||
|
||
```bash | ||
git add README.md | ||
git commit -m "Agrega [Tipo de Recurso: Recurso]" | ||
``` | ||
|
||
7. Hacé un push de tus cambios a tu repositorio en GitHub: | ||
|
||
```bash | ||
git push origin tu-rama | ||
``` | ||
|
||
8. Abrí un Pull Request desde tu rama a la rama principal de este repositorio. | ||
|
||
9. Tu Pull Request será revisado y fusionado si es aceptado. | ||
|
||
Si tienes alguna pregunta, no dudes en abrir un issue o contactarme ¡Esperamos tu contribución! 👏 |