{"id":1735,"date":"2022-03-30T09:00:00","date_gmt":"2022-03-30T16:00:00","guid":{"rendered":"https:\/\/jmcristobal.com\/?p=1735"},"modified":"2022-03-23T17:04:54","modified_gmt":"2022-03-24T00:04:54","slug":"basic-git-commands","status":"publish","type":"post","link":"https:\/\/www.jmcristobal.com\/es\/2022\/03\/30\/basic-git-commands\/","title":{"rendered":"Basic Git Commands"},"content":{"rendered":"<p>Te mostramos los comandos Git m\u00e1s comunes en esta Cheet Sheat. Es dif\u00edcil memorizar todos los comandos Git importantes, as\u00ed que guarda este art\u00edculo para usarlo en el futuro.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Instalaci\u00f3n y configuraci\u00f3n<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Visita el enlace para descargar e instalar Git en cualquier plataforma<\/span><br>      <a href=\"https:\/\/git-scm.com\/downloads\">https:\/\/git-scm.com\/downloads<\/a><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#establecer un nombre que sea identificable para el cr\u00e9dito cuando se revise el historial de versiones <\/span><kbd><br>   git config --global user.name \u201c[firstname lastname]\u201d<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#establecer una direcci\u00f3n de correo electr\u00f3nico que se asociar\u00e1 a cada marcador del historial<\/span><br>     <kbd>git config --global user.email \u201c[valid-email]\u201d<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#establecer el color de la l\u00ednea de comandos autom\u00e1tica para Git para facilitar la revisi\u00f3n<\/span><br><kbd>git config --global color.ui auto<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Obtener y crear proyectos<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#inicializar un directorio existente como repositorio Git<\/span><br><kbd>git init<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Recuperar un repositorio completo desde una ubicaci\u00f3n alojada a trav\u00e9s de una URL<\/span><br><kbd>git clone [url]<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Basic snapshotting<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#muestra los archivos modificados en el directorio de trabajo, preparados para tu pr\u00f3xima confirmaci\u00f3n<\/span><br><kbd>git status<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#a\u00f1ade un archivo tal y como se ve ahora a tu pr\u00f3xima confirmaci\u00f3n (stage)<\/span><br><kbd>git add [file]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#desmontar un archivo conservando los cambios en el directorio de trabajo<\/span><br><kbd>git reset [file]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#diff de lo que se ha cambiado pero no se ha puesto en escena<\/span><br><kbd>git diff<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#diff de lo que est\u00e1 preparado pero no ha sido confirmado<\/span><br><kbd>git diff --staged<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#comprometer el contenido preparado como una nueva instant\u00e1nea de la confirmaci\u00f3n<\/span><br><kbd>git commit -m \u201c[descriptive message]\u201d<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#eliminar el archivo del proyecto y preparar la eliminaci\u00f3n para la confirmaci\u00f3n<\/span><br><kbd>git rm [file]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#cambiar la ruta de un archivo existente y preparar el movimiento<\/span><br><kbd>git mv [existing-path] [new-path]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#permite ver la historia de los cambios en un archivo.<\/span><br><kbd>git show [filename]\u00a0<\/kbd><\/p>\n\n\n\n<h3><strong>Branching and merging<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Listado de todas las ramas locales en el repositorio. Con -a: muestra todas las ramas (con el remoto).<br><\/span><kbd>git branch [-a]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Crear una nueva rama, referenciando el HEAD actual.&nbsp;<br><\/span><kbd>git branch [branch_name]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Cambiar el directorio de trabajo a la rama especificada. Con -b: Git crear\u00e1 la rama especificada si no existe.<br><\/span><kbd>git checkout [-b][branch_name]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Unir la rama especificada [de nombre] a tu rama actual (en la que est\u00e1s actualmente).<br><\/span><kbd>git merge [from name]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Elimina la rama seleccionada, si ya est\u00e1 fusionada con alguna otra. -D en lugar de -d fuerza la eliminaci\u00f3n.<br><\/span><kbd>git branch -d [name]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Lista todas las etiquetas.<br><\/span><kbd>git tag<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Crear una referencia de etiqueta llamada nombre para el commit actual. A\u00f1adir commit sha para etiquetar una confirmaci\u00f3n espec\u00edfica en lugar de la actual.<br><\/span><kbd>git tag [name] [commit sha]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\"><em>#Crear un objeto de etiqueta llamado nombre para la confirmaci\u00f3n actual.&nbsp;<\/em><br><\/span><kbd>git tag -a [name] [commit sha]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\"><em>#Eliminar una etiqueta del repositorio local.<\/em><br><\/span><kbd>git tag -d [name]<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Compartir y actualizar proyectos<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Obtener los cambios del remoto, pero no actualizar las ramas de seguimiento.<br><\/span><kbd>git fetch [remote]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Borrar las referencias remotas que fueron eliminadas del repositorio remoto.<br><\/span><kbd>git fetch --prune [remote]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Recoge los cambios del remoto y fusiona la rama actual con la anterior.<br><\/span><kbd>git pull [remote]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Empuja los cambios locales a los remotos. Usa --tags para empujar etiquetas.<br><\/span><kbd>git push [--tags] [remote]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Empuja la rama local al repositorio remoto. Establece su copia como upstream.<br><\/span><kbd>git push -u [remote] [branch]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Agregar una URL de git como alias.<br><\/span><kbd>git remote add [alias] [url]<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Inspecci\u00f3n y comparaci\u00f3n<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Lista el historial de confirmaciones de la rama actual. -n count limita la lista a los \u00faltimos n commits.<br><\/span><kbd>git log [-n count]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Una visi\u00f3n general con etiquetas de referencia y gr\u00e1fico del historial. Una commit por l\u00ednea.<br><\/span><kbd>git log --oneline --graph --decorate<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Lista de confirmaciones presentes en la rama actual y no fusionadas en ref. Una ref puede ser un nombre de rama o un nombre de etiqueta.<br><\/span><kbd>git log ref..<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Lista de confirmaciones presentes en la rama actual y no fusionadas en la rama actual.<br><\/span><kbd>git log ..ref<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Lista de operaciones (por ejemplo, comprobaciones o confirmaciones) realizadas en el repositorio local.<br><\/span><kbd>git reflog<\/kbd><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3><strong>Patching<\/strong><\/h3>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\"><em>#<\/em>#Cambia la rama actual a la referencia de destino, dejando una diferencia como un cambio no comprometido. Cuando se utiliza --hard, se descartan todos los cambios.<br><\/span><kbd>git reset [--hard] [target reference]<\/kbd><\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">#Crea un nuevo commit, revirtiendo los cambios del commit especificado. Genera una inversi\u00f3n de los cambios.<br><\/span><kbd>git revert [commit sha]<\/kbd><\/p>","protected":false},"excerpt":{"rendered":"<p>We show you the most common Git commands in this Cheat Sheet. It is difficult to memorize all the important Git commands, <\/p>","protected":false},"author":2,"featured_media":1737,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[529,237],"tags":[582,281,523,581,530,583],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Basic Git Commands - JMCristobal<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.jmcristobal.com\/es\/2022\/03\/30\/basic-git-commands\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Basic Git Commands - JMCristobal\" \/>\n<meta property=\"og:description\" content=\"We show you the most common Git commands in this Cheat Sheet. It is difficult to memorize all the important Git commands,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.jmcristobal.com\/es\/2022\/03\/30\/basic-git-commands\/\" \/>\n<meta property=\"og:site_name\" content=\"JMCristobal\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/JMCristobalHomepage\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-30T16:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-24T00:04:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.jmcristobal.com\/wp-content\/uploads\/2022\/03\/Git-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"406\" \/>\n\t<meta property=\"og:image:height\" content=\"233\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"JMCristobal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@jmcristobalhome\" \/>\n<meta name=\"twitter:site\" content=\"@jmcristobalhome\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"JMCristobal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/\"},\"author\":{\"name\":\"JMCristobal\",\"@id\":\"https:\/\/www.jmcristobal.com\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118\"},\"headline\":\"Basic Git Commands\",\"datePublished\":\"2022-03-30T16:00:00+00:00\",\"dateModified\":\"2022-03-24T00:04:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/\"},\"wordCount\":637,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.jmcristobal.com\/#organization\"},\"keywords\":[\"cheat\",\"cli\",\"commands\",\"git\",\"linux\",\"sheet\"],\"articleSection\":[\"Devnet\",\"Linux\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/\",\"url\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/\",\"name\":\"Basic Git Commands - JMCristobal\",\"isPartOf\":{\"@id\":\"https:\/\/www.jmcristobal.com\/#website\"},\"datePublished\":\"2022-03-30T16:00:00+00:00\",\"dateModified\":\"2022-03-24T00:04:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.jmcristobal.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basic Git Commands\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.jmcristobal.com\/#website\",\"url\":\"https:\/\/www.jmcristobal.com\/\",\"name\":\"JMCristobal\",\"description\":\"Networking and more\",\"publisher\":{\"@id\":\"https:\/\/www.jmcristobal.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.jmcristobal.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.jmcristobal.com\/#organization\",\"name\":\"JMCristobal\",\"url\":\"https:\/\/www.jmcristobal.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.jmcristobal.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png\",\"contentUrl\":\"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png\",\"width\":518,\"height\":436,\"caption\":\"JMCristobal\"},\"image\":{\"@id\":\"https:\/\/www.jmcristobal.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.youtube.com\/JMCristobalHomepage\",\"https:\/\/web.facebook.com\/JMCristobalHomepage\",\"https:\/\/twitter.com\/jmcristobalhome\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.jmcristobal.com\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118\",\"name\":\"JMCristobal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.jmcristobal.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g\",\"caption\":\"JMCristobal\"},\"url\":\"https:\/\/www.jmcristobal.com\/es\/author\/jmcristobal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Basic Git Commands - JMCristobal","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.jmcristobal.com\/es\/2022\/03\/30\/basic-git-commands\/","og_locale":"es_ES","og_type":"article","og_title":"Basic Git Commands - JMCristobal","og_description":"We show you the most common Git commands in this Cheat Sheet. It is difficult to memorize all the important Git commands,","og_url":"https:\/\/www.jmcristobal.com\/es\/2022\/03\/30\/basic-git-commands\/","og_site_name":"JMCristobal","article_publisher":"https:\/\/web.facebook.com\/JMCristobalHomepage","article_published_time":"2022-03-30T16:00:00+00:00","article_modified_time":"2022-03-24T00:04:54+00:00","og_image":[{"width":406,"height":233,"url":"https:\/\/www.jmcristobal.com\/wp-content\/uploads\/2022\/03\/Git-logo.png","type":"image\/png"}],"author":"JMCristobal","twitter_card":"summary_large_image","twitter_creator":"@jmcristobalhome","twitter_site":"@jmcristobalhome","twitter_misc":{"Escrito por":"JMCristobal","Tiempo de lectura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#article","isPartOf":{"@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/"},"author":{"name":"JMCristobal","@id":"https:\/\/www.jmcristobal.com\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118"},"headline":"Basic Git Commands","datePublished":"2022-03-30T16:00:00+00:00","dateModified":"2022-03-24T00:04:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/"},"wordCount":637,"commentCount":0,"publisher":{"@id":"https:\/\/www.jmcristobal.com\/#organization"},"keywords":["cheat","cli","commands","git","linux","sheet"],"articleSection":["Devnet","Linux"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/","url":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/","name":"Basic Git Commands - JMCristobal","isPartOf":{"@id":"https:\/\/www.jmcristobal.com\/#website"},"datePublished":"2022-03-30T16:00:00+00:00","dateModified":"2022-03-24T00:04:54+00:00","breadcrumb":{"@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.jmcristobal.com\/2022\/03\/30\/basic-git-commands\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.jmcristobal.com\/"},{"@type":"ListItem","position":2,"name":"Basic Git Commands"}]},{"@type":"WebSite","@id":"https:\/\/www.jmcristobal.com\/#website","url":"https:\/\/www.jmcristobal.com\/","name":"JMCristobal","description":"Networking and more","publisher":{"@id":"https:\/\/www.jmcristobal.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.jmcristobal.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.jmcristobal.com\/#organization","name":"JMCristobal","url":"https:\/\/www.jmcristobal.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.jmcristobal.com\/#\/schema\/logo\/image\/","url":"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png","contentUrl":"https:\/\/jmcristobal.com\/wp-content\/uploads\/2021\/09\/Logo-JMCristobal.png","width":518,"height":436,"caption":"JMCristobal"},"image":{"@id":"https:\/\/www.jmcristobal.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.youtube.com\/JMCristobalHomepage","https:\/\/web.facebook.com\/JMCristobalHomepage","https:\/\/twitter.com\/jmcristobalhome"]},{"@type":"Person","@id":"https:\/\/www.jmcristobal.com\/#\/schema\/person\/e7cca8371cd491cf444cc824f30ae118","name":"JMCristobal","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.jmcristobal.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b549739a2a57394801aef27a76efdb3d?s=96&d=mm&r=g","caption":"JMCristobal"},"url":"https:\/\/www.jmcristobal.com\/es\/author\/jmcristobal\/"}]}},"jetpack_featured_media_url":"https:\/\/www.jmcristobal.com\/wp-content\/uploads\/2022\/03\/Git-logo.png","_links":{"self":[{"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/posts\/1735"}],"collection":[{"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/comments?post=1735"}],"version-history":[{"count":12,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/posts\/1735\/revisions"}],"predecessor-version":[{"id":1751,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/posts\/1735\/revisions\/1751"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/media\/1737"}],"wp:attachment":[{"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/media?parent=1735"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/categories?post=1735"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.jmcristobal.com\/es\/wp-json\/wp\/v2\/tags?post=1735"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}