Skip to content

Instantly share code, notes, and snippets.

View sebas-777's full-sized avatar
馃幆
Focusing

Sebastian Castro Morales sebas-777

馃幆
Focusing
View GitHub Profile

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@sebas-777
sebas-777 / Colaborar Proyecto GitHub.markdown
Created September 28, 2022 03:26 — forked from BCasal/Colaborar Proyecto GitHub.markdown
Pasos a seguir para colaborar en un proyecto de GitHub

C贸mo colaborar en un proyecto en GitHub

  • Fork del repositorio
  • Clonar el repositorio
  • Actualizar la rama master
  • Crear una rama
  • Hacer los cambios
  • Hacer un Pull Request

Fork del repositorio

@sebas-777
sebas-777 / gist:a6e855cccf86b8a1a1aa8352f231f4cc
Created September 18, 2022 21:44 — forked from karmanov/gist:499e0dfdf8e5ce119ad4
spring.jpa.hibernate.ddl-auto values
validate: validate the schema, makes no changes to the database.
update: update the schema.
create: creates the schema, destroying previous data.
create-drop: drop the schema at the end of the session.