Skip to content

Instantly share code, notes, and snippets.

View kauemorelli's full-sized avatar

Kauê Morelli kauemorelli

View GitHub Profile
@imaginamundo
imaginamundo / Regex telefone Brasil.md
Last active May 20, 2025 13:40
Regex para padrões de telefones brasileiros com explicação e como usar

Regex para telefones do Brasil

^(55)?(?:([1-9]{2})?)(\d{4,5})(\d{4})$

const regex = /^(55)?(?:([1-9]{2})?)(\d{4,5})(\d{4})$/;

Explicação

@heiswayi
heiswayi / repo-reset.md
Created February 5, 2017 01:32
GitHub - Delete commits history with git commands

First Method

Deleting the .git folder may cause problems in our git repository. If we want to delete all of our commits history, but keep the code in its current state, try this:

# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH

# Add all the files:
git add -A