Skip to content

Instantly share code, notes, and snippets.

View mangelsnc's full-sized avatar
☠️
Coding at @secture

Miguel Ángel Sánchez Chordi mangelsnc

☠️
Coding at @secture
View GitHub Profile
@mangelsnc
mangelsnc / paises.csv
Created April 26, 2018 09:28 — forked from brenes/README.md
CSV de paises, con nombre en castellano, ingles, codigo ISO y prefijo telefónico del país
nombre name nom iso2 iso3 phone_code
Afganistán Afghanistan Afghanistan AF AFG 93
Albania Albania Albanie AL ALB 355
Alemania Germany Allemagne DE DEU 49
Algeria Algeria Algérie DZ DZA 213
Andorra Andorra Andorra AD AND 376
Angola Angola Angola AO AGO 244
Anguila Anguilla Anguilla AI AIA 1 264
Antártida Antarctica L'Antarctique AQ ATA 672
Antigua y Barbuda Antigua and Barbuda Antigua et Barbuda AG ATG 1 268
@mangelsnc
mangelsnc / gist:d8249b25bf8e0844ee01a9fc81ec8834
Created March 15, 2019 11:17 — forked from lttlrck/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote