Skip to content

Instantly share code, notes, and snippets.

View protron's full-sized avatar

Mariano Desanze protron

  • Buenos Aires, Argentina
View GitHub Profile
@protron
protron / .gitconfig
Last active March 30, 2022 20:19
.gitconfig (aliases, editor config, defaults)
[alias]
aliases = config --global --get-regexp 'alias.*'
st = status
co = checkout
ci = commit
skip = update-index --skip-worktree
unskip = update-index --no-skip-worktree
skipped = !git ls-files -v . | grep ^S
hide = update-index --assume-unchanged
unhide = update-index --no-assume-unchanged