Configuración

git config --global -l
[user]
	name = Manu Artero Anguita
	email = manutero.developer@gmail.com

[push]
	default = simple

[alias]
  ...

[core]
	excludesfile = /Users/cx01885/.gitignore_global

[init]
	defaultBranch = main

[commit]
	template = /Users/cx01885/.stCommitMsg

.gitignore

  1. Global: fallback para todos tus proyectos

Alias que pueden ser útiles

Para hacer el mensaje de un commit, elige una de estas cinco (no te defraudará)

  • fix: listing whatever properly

  • feat: displaying whatever when whenever

  • refactor: move from whatever to whateverito

  • chore: house keeping. Mi casa como los chorros del oro

  • docs

  • [test]

  • [style]

  • [perf]

Last updated