Skip to content

Instantly share code, notes, and snippets.

View JulianDevz's full-sized avatar
⌨️
Coding

Julian Pachon JulianDevz

⌨️
Coding
View GitHub Profile
@Villanuevand
Villanuevand / README-español.md
Last active September 16, 2024 00:10
Una plantilla para hacer un buen README.md. Inspirado en el gist de @PurpleBooth => https://gist.github.com/PurpleBooth/109311bb0361f32d87a2

Título del Proyecto

Acá va un párrafo que describa lo que es el proyecto

Comenzando 🚀

Estas instrucciones te permitirán obtener una copia del proyecto en funcionamiento en tu máquina local para propósitos de desarrollo y pruebas.

Mira Deployment para conocer como desplegar el proyecto.

@estadoactivo
estadoactivo / git_remote_remove
Created December 9, 2013 17:49
Borrar una conexión con rama remota
git remote -v
# View current remotes
# origin git@github.com:user/repo.git (fetch)
# origin git@github.com:user/repo.git (push)
# destination git@github.com:forker/repo.git (fetch)
# destination git@github.com:forker/repo.git (push)
git remote rm destination
# Remove remote
git remote -v
# Verify removal