aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancisco Fuentes <git@ffuent.es>2021-04-10 23:58:38 -0400
committerFrancisco Fuentes <git@ffuent.es>2021-04-10 23:58:38 -0400
commit06d625c641fdce7bdcdc0c1ae0eb2627536e8463 (patch)
tree1c65b1324097de71a0fc3c5555e5eff6f1fb2f2b
parent355a963809a7d86d742f4031a242f20104895369 (diff)
downloadwiki-master.tar.gz
publicado aporte bru send-emailHEADmaster
-rwxr-xr-x.gitignore1
-rw-r--r--0001-Tutorial-send-email-format-patch-1.patch77
-rw-r--r--_site/0001-Tutorial-send-email-format-patch-1.patch77
-rw-r--r--_site/2021/04/10/git-send-email-y-git-format-patch.html11
-rw-r--r--_site/CONTRIBUIR.md7
-rw-r--r--_site/about.html2
-rw-r--r--_site/atom.xml65
-rw-r--r--_site/buscar.html2
-rw-r--r--_site/feed.json21
-rw-r--r--_site/index.html2
-rw-r--r--_site/search.json11
-rw-r--r--_site/sitemap.xml8
-rw-r--r--_site/tag/control-de-versiones/index.html2
-rw-r--r--_site/tag/email/index.html2
-rw-r--r--_site/tag/git/index.html2
-rw-r--r--_site/tag/remoto/index.html2
16 files changed, 282 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore
index f6fb3d1..f29c412 100755
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ tmp
.DS_Store
.jekyll-cache
.git
+.patch \ No newline at end of file
diff --git a/0001-Tutorial-send-email-format-patch-1.patch b/0001-Tutorial-send-email-format-patch-1.patch
new file mode 100644
index 0000000..ffb02be
--- /dev/null
+++ b/0001-Tutorial-send-email-format-patch-1.patch
@@ -0,0 +1,77 @@
+From 7bab1dd25f3a93a112d29fa94598b162ada9ebcf Mon Sep 17 00:00:00 2001
+From: bru <bru@texto-plano.xyz>
+Date: Sat, 10 Apr 2021 14:23:03 -0300
+Subject: [PATCH] Tutorial send-email/format-patch
+
+---
+ ...04-10-git-send-email-y-git-format-patch.md | 58 +++++++++++++++++++
+ 1 file changed, 58 insertions(+)
+ create mode 100644 _posts/2021-04-10-git-send-email-y-git-format-patch.md
+
+diff --git a/_posts/2021-04-10-git-send-email-y-git-format-patch.md b/_posts/2021-04-10-git-send-email-y-git-format-patch.md
+new file mode 100644
+index 0000000..b51f339
+--- /dev/null
++++ b/_posts/2021-04-10-git-send-email-y-git-format-patch.md
+@@ -0,0 +1,58 @@
++---
++layout: post
++title: Cómo enviar commits en forma de parches con git send-email y git format-patch
++date: 2021-04-10
++category: herramientas
++tags: git control-de-versiones email remoto
++---
++
++A veces queremos incluir cambios que hicimos en nuestro repositorio, sea
++local o remoto, a otro repositorio de otra persona. Esto se puede hacer
++eligiendo los commits que contienen estos cambios y convertirlos en parches.
++Estos son simplemente archivos que diferencian un archivo de otro, línea por
++línea. Un parche puede enviarse por cualquier medio electrónico, y el autor
++de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta
++es una guía muy simple para crear y enviar estos parches.
++
++En tu repositorio, haz las modificaciones y commits que vayas a enviar como
++parches. Pueden ser tantos como requieras.
++
++Luego, configura las variables necesarias de send-email:
++
++ git config user.name <usuario> # Nombre del autor del commit
++ git config user.email <usuario>@texto-plano.xyz # Email del autor
++ git config sendemail.from "Usuario <usuario@texto-plano.xyz>" # Formato "From" para el correo
++ git config smtpuser <usuario> # Usuario en el servidor SMTP
++ git config smtpserver texto-plano.xyz # Servidor SMTP
++ git config smtpserverport 587 # Puerto del servidor
++ git config sendemail.smtpencryption tls # Encriptación TLS para el servidor
++ git config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismo
++
++Se pedirá la contraseña del servidor en cada instancia, salvo que se
++especifique la variable `sendemail.smtppassword` (inseguro).
++
++Luego, envía los commits que elijas con git send-email. En este caso, '-1'
++elige el último commit hecho desde HEAD. Es necesario especificar a quién
++enviarle los parches con '--to'.
++
++ git send-email -1 --to="Destinatario <destinatario@ejemplo.com>"
++
++Si todo salió bien, el destinatario debería tener todos los parches que
++elegiste en su casilla de correo.
++
++Para crear un archivo .patch individual, se usa git format-patch. De nuevo,
++'-1', por ejemplo, elige el último commit. Con '-o' se elige el directorio en
++el que van a quedar los parches.
++
++ git format-patch -1 -o /home/<usuario>
++
++Esta herramienta es útil por si se necesitan enviar los parches por otro
++programa de manera adjunta. También puede generarse el parche para usarlo de
++argumento con send-email.
++
++Más información (en inglés):
++
++- [Learn to use email with git!](https://git-send-email.io/)
++- [How to Use git send-email](https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/)
++- [Manpage de git send-email](https://git-scm.com/docs/git-send-email)
++- [Manpage de git format-patch](https://git-scm.com/docs/git-format-patch)
+--
+2.30.2
+
diff --git a/_site/0001-Tutorial-send-email-format-patch-1.patch b/_site/0001-Tutorial-send-email-format-patch-1.patch
new file mode 100644
index 0000000..ffb02be
--- /dev/null
+++ b/_site/0001-Tutorial-send-email-format-patch-1.patch
@@ -0,0 +1,77 @@
+From 7bab1dd25f3a93a112d29fa94598b162ada9ebcf Mon Sep 17 00:00:00 2001
+From: bru <bru@texto-plano.xyz>
+Date: Sat, 10 Apr 2021 14:23:03 -0300
+Subject: [PATCH] Tutorial send-email/format-patch
+
+---
+ ...04-10-git-send-email-y-git-format-patch.md | 58 +++++++++++++++++++
+ 1 file changed, 58 insertions(+)
+ create mode 100644 _posts/2021-04-10-git-send-email-y-git-format-patch.md
+
+diff --git a/_posts/2021-04-10-git-send-email-y-git-format-patch.md b/_posts/2021-04-10-git-send-email-y-git-format-patch.md
+new file mode 100644
+index 0000000..b51f339
+--- /dev/null
++++ b/_posts/2021-04-10-git-send-email-y-git-format-patch.md
+@@ -0,0 +1,58 @@
++---
++layout: post
++title: Cómo enviar commits en forma de parches con git send-email y git format-patch
++date: 2021-04-10
++category: herramientas
++tags: git control-de-versiones email remoto
++---
++
++A veces queremos incluir cambios que hicimos en nuestro repositorio, sea
++local o remoto, a otro repositorio de otra persona. Esto se puede hacer
++eligiendo los commits que contienen estos cambios y convertirlos en parches.
++Estos son simplemente archivos que diferencian un archivo de otro, línea por
++línea. Un parche puede enviarse por cualquier medio electrónico, y el autor
++de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta
++es una guía muy simple para crear y enviar estos parches.
++
++En tu repositorio, haz las modificaciones y commits que vayas a enviar como
++parches. Pueden ser tantos como requieras.
++
++Luego, configura las variables necesarias de send-email:
++
++ git config user.name <usuario> # Nombre del autor del commit
++ git config user.email <usuario>@texto-plano.xyz # Email del autor
++ git config sendemail.from "Usuario <usuario@texto-plano.xyz>" # Formato "From" para el correo
++ git config smtpuser <usuario> # Usuario en el servidor SMTP
++ git config smtpserver texto-plano.xyz # Servidor SMTP
++ git config smtpserverport 587 # Puerto del servidor
++ git config sendemail.smtpencryption tls # Encriptación TLS para el servidor
++ git config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismo
++
++Se pedirá la contraseña del servidor en cada instancia, salvo que se
++especifique la variable `sendemail.smtppassword` (inseguro).
++
++Luego, envía los commits que elijas con git send-email. En este caso, '-1'
++elige el último commit hecho desde HEAD. Es necesario especificar a quién
++enviarle los parches con '--to'.
++
++ git send-email -1 --to="Destinatario <destinatario@ejemplo.com>"
++
++Si todo salió bien, el destinatario debería tener todos los parches que
++elegiste en su casilla de correo.
++
++Para crear un archivo .patch individual, se usa git format-patch. De nuevo,
++'-1', por ejemplo, elige el último commit. Con '-o' se elige el directorio en
++el que van a quedar los parches.
++
++ git format-patch -1 -o /home/<usuario>
++
++Esta herramienta es útil por si se necesitan enviar los parches por otro
++programa de manera adjunta. También puede generarse el parche para usarlo de
++argumento con send-email.
++
++Más información (en inglés):
++
++- [Learn to use email with git!](https://git-send-email.io/)
++- [How to Use git send-email](https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/)
++- [Manpage de git send-email](https://git-scm.com/docs/git-send-email)
++- [Manpage de git format-patch](https://git-scm.com/docs/git-format-patch)
+--
+2.30.2
+
diff --git a/_site/2021/04/10/git-send-email-y-git-format-patch.html b/_site/2021/04/10/git-send-email-y-git-format-patch.html
new file mode 100644
index 0000000..071622a
--- /dev/null
+++ b/_site/2021/04/10/git-send-email-y-git-format-patch.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Cómo enviar commits en forma de parches con git send-email y git format-patch" /><meta property="og:locale" content="en_US" /><meta name="description" content="A veces queremos incluir cambios que hicimos en nuestro repositorio, sea local o remoto, a otro repositorio de otra persona. Esto se puede hacer eligiendo los commits que contienen estos cambios y convertirlos en parches. Estos son simplemente archivos que diferencian un archivo de otro, línea por línea. Un parche puede enviarse por cualquier medio electrónico, y el autor de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta es una guía muy simple para crear y enviar estos parches." /><meta property="og:description" content="A veces queremos incluir cambios que hicimos en nuestro repositorio, sea local o remoto, a otro repositorio de otra persona. Esto se puede hacer eligiendo los commits que contienen estos cambios y convertirlos en parches. Estos son simplemente archivos que diferencian un archivo de otro, línea por línea. Un parche puede enviarse por cualquier medio electrónico, y el autor de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta es una guía muy simple para crear y enviar estos parches." /><link rel="canonical" href="wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch" /><meta property="og:url" content="wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta property="og:type" content="article" /><meta property="article:published_time" content="2021-04-10T00:00:00-04:00" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Cómo enviar commits en forma de parches con git send-email y git format-patch" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"A veces queremos incluir cambios que hicimos en nuestro repositorio, sea local o remoto, a otro repositorio de otra persona. Esto se puede hacer eligiendo los commits que contienen estos cambios y convertirlos en parches. Estos son simplemente archivos que diferencian un archivo de otro, línea por línea. Un parche puede enviarse por cualquier medio electrónico, y el autor de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta es una guía muy simple para crear y enviar estos parches.","@type":"BlogPosting","url":"wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch","headline":"Cómo enviar commits en forma de parches con git send-email y git format-patch","dateModified":"2021-04-10T00:00:00-04:00","datePublished":"2021-04-10T00:00:00-04:00","mainEntityOfPage":{"@type":"WebPage","@id":"wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch"},"@context":"https://schema.org"}</script><title> Cómo enviar commits en forma de parches con git send-email y git format-patch - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="post"><h2>Cómo enviar commits en forma de parches con git send-email y git format-patch</h2><p>A veces queremos incluir cambios que hicimos en nuestro repositorio, sea local o remoto, a otro repositorio de otra persona. Esto se puede hacer eligiendo los commits que contienen estos cambios y convertirlos en parches. Estos son simplemente archivos que diferencian un archivo de otro, línea por línea. Un parche puede enviarse por cualquier medio electrónico, y el autor de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta es una guía muy simple para crear y enviar estos parches.</p><p>En tu repositorio, haz las modificaciones y commits que vayas a enviar como parches. Pueden ser tantos como requieras.</p><p>Luego, configura las variables necesarias de send-email:</p><pre><code>git config user.name &lt;usuario&gt; # Nombre del autor del commit
+git config user.email &lt;usuario&gt;@texto-plano.xyz # Email del autor
+git config sendemail.from "Usuario &lt;usuario@texto-plano.xyz&gt;" # Formato "From" para el correo
+git config smtpuser &lt;usuario&gt; # Usuario en el servidor SMTP
+git config smtpserver texto-plano.xyz # Servidor SMTP
+git config smtpserverport 587 # Puerto del servidor
+git config sendemail.smtpencryption tls # Encriptación TLS para el servidor
+git config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismo
+</code></pre><p>Se pedirá la contraseña del servidor en cada instancia, salvo que se especifique la variable <code>sendemail.smtppassword</code> (inseguro).</p><p>Luego, envía los commits que elijas con git send-email. En este caso, ‘-1’ elige el último commit hecho desde HEAD. Es necesario especificar a quién enviarle los parches con ‘–to’.</p><pre><code>git send-email -1 --to="Destinatario &lt;destinatario@ejemplo.com&gt;"
+</code></pre><p>Si todo salió bien, el destinatario debería tener todos los parches que elegiste en su casilla de correo.</p><p>Para crear un archivo .patch individual, se usa git format-patch. De nuevo, ‘-1’, por ejemplo, elige el último commit. Con ‘-o’ se elige el directorio en el que van a quedar los parches.</p><pre><code>git format-patch -1 -o /home/&lt;usuario&gt;
+</code></pre><p>Esta herramienta es útil por si se necesitan enviar los parches por otro programa de manera adjunta. También puede generarse el parche para usarlo de argumento con send-email.</p><p>Más información (en inglés):</p><ul><li><a href="https://git-send-email.io/">Learn to use email with git!</a></li><li><a href="https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/">How to Use git send-email</a></li><li><a href="https://git-scm.com/docs/git-send-email">Manpage de git send-email</a></li><li><a href="https://git-scm.com/docs/git-format-patch">Manpage de git format-patch</a></li></ul><span class="meta"><time datetime="2021-04-10T00:00:00-04:00">10 04 2021</time> &middot; <a href="/tag/git">git</a>, <a href="/tag/control-de-versiones">control-de-versiones</a>, <a href="/tag/email">email</a>, <a href="/tag/remoto">remoto</a></span></section></main></body></html>
diff --git a/_site/CONTRIBUIR.md b/_site/CONTRIBUIR.md
new file mode 100644
index 0000000..6eb92d9
--- /dev/null
+++ b/_site/CONTRIBUIR.md
@@ -0,0 +1,7 @@
+# Contribuir
+
+Para contribuir a la wiki de texto-plano.xyz tienes que hacer un fork y crear un documento en formato markdown (suelen crearse con .md o .markdown) y agregarlo a la carpeta _posts/ con su respectiva "materia frontal" que es un encabezado que llevan las páginas en este formato y que luego es renderizado por Jekyll para añadir títulos, fechas, categorías y etiquetas. Lo ideal es que pruebes antes la renderización en tu máquina local con jekyll antes de agregar tu aporte a este repositorio con git send mail
+
+Si jekyll te parece demasiado avanzado es mejor que envíes tu artículo **en formato markdown** a admin@texto-plano.xyz. Hay conversores de HTML a markdown.
+
+La sintaxis de markdown se puede leer en https://joedicastro.com/pages/markdown.html#mark1 o https://daringfireball.net/projects/markdown/ \ No newline at end of file
diff --git a/_site/about.html b/_site/about.html
index c6fbd72..09dbe8c 100644
--- a/_site/about.html
+++ b/_site/about.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="About" /><meta property="og:locale" content="en_US" /><meta name="description" content="Sidey is a simple and minimalistic jekyll blogging theme." /><meta property="og:description" content="Sidey is a simple and minimalistic jekyll blogging theme." /><link rel="canonical" href="wiki.texto-plano.xyz/about" /><meta property="og:url" content="wiki.texto-plano.xyz/about" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta property="og:type" content="article" /><meta property="article:published_time" content="2021-03-24T22:02:48-03:00" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="About" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Sidey is a simple and minimalistic jekyll blogging theme.","@type":"BlogPosting","url":"wiki.texto-plano.xyz/about","headline":"About","dateModified":"2021-03-24T22:02:48-03:00","datePublished":"2021-03-24T22:02:48-03:00","mainEntityOfPage":{"@type":"WebPage","@id":"wiki.texto-plano.xyz/about"},"@context":"https://schema.org"}</script><title> About - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="post"><h2>About</h2><p>Sidey is a simple and minimalistic jekyll blogging theme.</p><h3 id="features">Features</h3><ul><li>Responsive design</li><li>Inline CSS</li><li>Anchor headings</li><li>Search</li><li>Tags &amp; tag pages</li><li>Security headers (for Netlify hosting)</li><li>404 page</li><li>Compressed CSS and HTML</li><li>100/100 score on Lighthouse, Page Speed Insights &amp; Webpagetest</li><li>Robots.txt</li><li>Atom &amp; Json feeds</li><li>Sass</li><li>Seo optimized (Twitter cards, Facebook Open Graph, Schema.org)</li><li>Ultra fast (Only ~5kb of CSS)</li><li>Sidebar navigation</li></ul><h3 id="screenshot">Screenshot</h3><p><img src="screenshot.png" alt="Screenshot" /></p></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="About" /><meta property="og:locale" content="en_US" /><meta name="description" content="Sidey is a simple and minimalistic jekyll blogging theme." /><meta property="og:description" content="Sidey is a simple and minimalistic jekyll blogging theme." /><link rel="canonical" href="wiki.texto-plano.xyz/about" /><meta property="og:url" content="wiki.texto-plano.xyz/about" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta property="og:type" content="article" /><meta property="article:published_time" content="2021-04-10T23:56:28-04:00" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="About" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Sidey is a simple and minimalistic jekyll blogging theme.","@type":"BlogPosting","url":"wiki.texto-plano.xyz/about","headline":"About","dateModified":"2021-04-10T23:56:28-04:00","datePublished":"2021-04-10T23:56:28-04:00","mainEntityOfPage":{"@type":"WebPage","@id":"wiki.texto-plano.xyz/about"},"@context":"https://schema.org"}</script><title> About - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="post"><h2>About</h2><p>Sidey is a simple and minimalistic jekyll blogging theme.</p><h3 id="features">Features</h3><ul><li>Responsive design</li><li>Inline CSS</li><li>Anchor headings</li><li>Search</li><li>Tags &amp; tag pages</li><li>Security headers (for Netlify hosting)</li><li>404 page</li><li>Compressed CSS and HTML</li><li>100/100 score on Lighthouse, Page Speed Insights &amp; Webpagetest</li><li>Robots.txt</li><li>Atom &amp; Json feeds</li><li>Sass</li><li>Seo optimized (Twitter cards, Facebook Open Graph, Schema.org)</li><li>Ultra fast (Only ~5kb of CSS)</li><li>Sidebar navigation</li></ul><h3 id="screenshot">Screenshot</h3><p><img src="screenshot.png" alt="Screenshot" /></p></section></main></body></html>
diff --git a/_site/atom.xml b/_site/atom.xml
index e5c7d01..02fd765 100644
--- a/_site/atom.xml
+++ b/_site/atom.xml
@@ -4,7 +4,7 @@
<title>Wiki Texto-Plano</title>
<link href="wiki.texto-plano.xyz/atom.xml" rel="self"/>
<link href="wiki.texto-plano.xyz/"/>
- <updated>2021-03-24T22:02:48-03:00</updated>
+ <updated>2021-04-10T23:56:28-04:00</updated>
<id>wiki.texto-plano.xyz</id>
<author>
<name></name>
@@ -13,6 +13,69 @@
<entry>
+ <title>Cómo enviar commits en forma de parches con git send-email y git format-patch</title>
+ <link href="wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch"/>
+ <updated>2021-04-10T00:00:00-04:00</updated>
+ <id>wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch</id>
+ <content type="html">&lt;p&gt;A veces queremos incluir cambios que hicimos en nuestro repositorio, sea
+local o remoto, a otro repositorio de otra persona. Esto se puede hacer
+eligiendo los commits que contienen estos cambios y convertirlos en parches.
+Estos son simplemente archivos que diferencian un archivo de otro, línea por
+línea. Un parche puede enviarse por cualquier medio electrónico, y el autor
+de otro repositorio puede aplicar dicho parche a su propio repositorio. Esta
+es una guía muy simple para crear y enviar estos parches.&lt;/p&gt;
+
+&lt;p&gt;En tu repositorio, haz las modificaciones y commits que vayas a enviar como
+parches. Pueden ser tantos como requieras.&lt;/p&gt;
+
+&lt;p&gt;Luego, configura las variables necesarias de send-email:&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;git config user.name &amp;lt;usuario&amp;gt; # Nombre del autor del commit
+git config user.email &amp;lt;usuario&amp;gt;@texto-plano.xyz # Email del autor
+git config sendemail.from &quot;Usuario &amp;lt;usuario@texto-plano.xyz&amp;gt;&quot; # Formato &quot;From&quot; para el correo
+git config smtpuser &amp;lt;usuario&amp;gt; # Usuario en el servidor SMTP
+git config smtpserver texto-plano.xyz # Servidor SMTP
+git config smtpserverport 587 # Puerto del servidor
+git config sendemail.smtpencryption tls # Encriptación TLS para el servidor
+git config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismo
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;Se pedirá la contraseña del servidor en cada instancia, salvo que se
+especifique la variable &lt;code&gt;sendemail.smtppassword&lt;/code&gt; (inseguro).&lt;/p&gt;
+
+&lt;p&gt;Luego, envía los commits que elijas con git send-email. En este caso, ‘-1’
+elige el último commit hecho desde HEAD. Es necesario especificar a quién
+enviarle los parches con ‘–to’.&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;git send-email -1 --to=&quot;Destinatario &amp;lt;destinatario@ejemplo.com&amp;gt;&quot;
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;Si todo salió bien, el destinatario debería tener todos los parches que
+elegiste en su casilla de correo.&lt;/p&gt;
+
+&lt;p&gt;Para crear un archivo .patch individual, se usa git format-patch. De nuevo,
+‘-1’, por ejemplo, elige el último commit. Con ‘-o’ se elige el directorio en
+el que van a quedar los parches.&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;git format-patch -1 -o /home/&amp;lt;usuario&amp;gt;
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;Esta herramienta es útil por si se necesitan enviar los parches por otro
+programa de manera adjunta. También puede generarse el parche para usarlo de
+argumento con send-email.&lt;/p&gt;
+
+&lt;p&gt;Más información (en inglés):&lt;/p&gt;
+
+&lt;ul&gt;
+ &lt;li&gt;&lt;a href=&quot;https://git-send-email.io/&quot;&gt;Learn to use email with git!&lt;/a&gt;&lt;/li&gt;
+ &lt;li&gt;&lt;a href=&quot;https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/&quot;&gt;How to Use git send-email&lt;/a&gt;&lt;/li&gt;
+ &lt;li&gt;&lt;a href=&quot;https://git-scm.com/docs/git-send-email&quot;&gt;Manpage de git send-email&lt;/a&gt;&lt;/li&gt;
+ &lt;li&gt;&lt;a href=&quot;https://git-scm.com/docs/git-format-patch&quot;&gt;Manpage de git format-patch&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+</content>
+ </entry>
+
+ <entry>
<title>Aprende a usar la terminal</title>
<link href="wiki.texto-plano.xyz/2021/03/24/aprende-a-usar-la-terminal"/>
<updated>2021-03-24T21:52:00-03:00</updated>
diff --git a/_site/buscar.html b/_site/buscar.html
index e0d3e76..0cb5ebc 100644
--- a/_site/buscar.html
+++ b/_site/buscar.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Buscar" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/buscar" /><meta property="og:url" content="wiki.texto-plano.xyz/buscar" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta property="og:type" content="article" /><meta property="article:published_time" content="2021-03-24T22:02:48-03:00" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Buscar" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"BlogPosting","url":"wiki.texto-plano.xyz/buscar","headline":"Buscar","dateModified":"2021-03-24T22:02:48-03:00","datePublished":"2021-03-24T22:02:48-03:00","mainEntityOfPage":{"@type":"WebPage","@id":"wiki.texto-plano.xyz/buscar"},"@context":"https://schema.org"}</script><title> Buscar - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" class="active">Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="post"><h2>Buscar</h2><style> #search-container { max-width: 100%; } input[type=text] { font-size: normal; outline: none; padding: 1rem; background: rgb(236, 237, 238); width: 100%; -webkit-appearance: none; font-family: inherit; font-size: 100%; border: none; } #results-container { margin: .5rem 0; }</style><div id="search-container"> <input type="text" id="search-input" placeholder="Buscar..." /><ol id="results-container"></ol></div><script src="/search.js" type="text/javascript"></script> <script type="text/javascript"> SimpleJekyllSearch({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('results-container'), json: '/search.json', searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}</a></li>', noResultsText: 'No results found', limit: 10, fuzzy: false, exclude: ['Welcome'] }) </script></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Buscar" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/buscar" /><meta property="og:url" content="wiki.texto-plano.xyz/buscar" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta property="og:type" content="article" /><meta property="article:published_time" content="2021-04-10T23:56:28-04:00" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Buscar" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"BlogPosting","url":"wiki.texto-plano.xyz/buscar","headline":"Buscar","dateModified":"2021-04-10T23:56:28-04:00","datePublished":"2021-04-10T23:56:28-04:00","mainEntityOfPage":{"@type":"WebPage","@id":"wiki.texto-plano.xyz/buscar"},"@context":"https://schema.org"}</script><title> Buscar - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" class="active">Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="post"><h2>Buscar</h2><style> #search-container { max-width: 100%; } input[type=text] { font-size: normal; outline: none; padding: 1rem; background: rgb(236, 237, 238); width: 100%; -webkit-appearance: none; font-family: inherit; font-size: 100%; border: none; } #results-container { margin: .5rem 0; }</style><div id="search-container"> <input type="text" id="search-input" placeholder="Buscar..." /><ol id="results-container"></ol></div><script src="/search.js" type="text/javascript"></script> <script type="text/javascript"> SimpleJekyllSearch({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('results-container'), json: '/search.json', searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}</a></li>', noResultsText: 'No results found', limit: 10, fuzzy: false, exclude: ['Welcome'] }) </script></section></main></body></html>
diff --git a/_site/feed.json b/_site/feed.json
index a1ae54c..1bf5bca 100644
--- a/_site/feed.json
+++ b/_site/feed.json
@@ -13,6 +13,27 @@
"items": [
{
+ "id": "wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch",
+ "title": "Cómo enviar commits en forma de parches con git send-email y git format-patch",
+ "summary": null,
+ "content_text": "A veces queremos incluir cambios que hicimos en nuestro repositorio, sealocal o remoto, a otro repositorio de otra persona. Esto se puede hacereligiendo los commits que contienen estos cambios y convertirlos en parches.Estos son simplemente archivos que diferencian un archivo de otro, línea porlínea. Un parche puede enviarse por cualquier medio electrónico, y el autorde otro repositorio puede aplicar dicho parche a su propio repositorio. Estaes una guía muy simple para crear y enviar estos parches.En tu repositorio, haz las modificaciones y commits que vayas a enviar comoparches. Pueden ser tantos como requieras.Luego, configura las variables necesarias de send-email:git config user.name &lt;usuario&gt; # Nombre del autor del commitgit config user.email &lt;usuario&gt;@texto-plano.xyz # Email del autorgit config sendemail.from \"Usuario &lt;usuario@texto-plano.xyz&gt;\" # Formato \"From\" para el correogit config smtpuser &lt;usuario&gt; # Usuario en el servidor SMTPgit config smtpserver texto-plano.xyz # Servidor SMTPgit config smtpserverport 587 # Puerto del servidorgit config sendemail.smtpencryption tls # Encriptación TLS para el servidorgit config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismoSe pedirá la contraseña del servidor en cada instancia, salvo que seespecifique la variable sendemail.smtppassword (inseguro).Luego, envía los commits que elijas con git send-email. En este caso, ‘-1’elige el último commit hecho desde HEAD. Es necesario especificar a quiénenviarle los parches con ‘–to’.git send-email -1 --to=\"Destinatario &lt;destinatario@ejemplo.com&gt;\"Si todo salió bien, el destinatario debería tener todos los parches queelegiste en su casilla de correo.Para crear un archivo .patch individual, se usa git format-patch. De nuevo,‘-1’, por ejemplo, elige el último commit. Con ‘-o’ se elige el directorio enel que van a quedar los parches.git format-patch -1 -o /home/&lt;usuario&gt;Esta herramienta es útil por si se necesitan enviar los parches por otroprograma de manera adjunta. También puede generarse el parche para usarlo deargumento con send-email.Más información (en inglés): Learn to use email with git! How to Use git send-email Manpage de git send-email Manpage de git format-patch",
+ "content_html": "<p>A veces queremos incluir cambios que hicimos en nuestro repositorio, sealocal o remoto, a otro repositorio de otra persona. Esto se puede hacereligiendo los commits que contienen estos cambios y convertirlos en parches.Estos son simplemente archivos que diferencian un archivo de otro, línea porlínea. Un parche puede enviarse por cualquier medio electrónico, y el autorde otro repositorio puede aplicar dicho parche a su propio repositorio. Estaes una guía muy simple para crear y enviar estos parches.</p><p>En tu repositorio, haz las modificaciones y commits que vayas a enviar comoparches. Pueden ser tantos como requieras.</p><p>Luego, configura las variables necesarias de send-email:</p><pre><code>git config user.name &lt;usuario&gt; # Nombre del autor del commitgit config user.email &lt;usuario&gt;@texto-plano.xyz # Email del autorgit config sendemail.from \"Usuario &lt;usuario@texto-plano.xyz&gt;\" # Formato \"From\" para el correogit config smtpuser &lt;usuario&gt; # Usuario en el servidor SMTPgit config smtpserver texto-plano.xyz # Servidor SMTPgit config smtpserverport 587 # Puerto del servidorgit config sendemail.smtpencryption tls # Encriptación TLS para el servidorgit config sendemailsuppresscc self # Recomendable, evita enviarte el parche a ti mismo</code></pre><p>Se pedirá la contraseña del servidor en cada instancia, salvo que seespecifique la variable <code>sendemail.smtppassword</code> (inseguro).</p><p>Luego, envía los commits que elijas con git send-email. En este caso, ‘-1’elige el último commit hecho desde HEAD. Es necesario especificar a quiénenviarle los parches con ‘–to’.</p><pre><code>git send-email -1 --to=\"Destinatario &lt;destinatario@ejemplo.com&gt;\"</code></pre><p>Si todo salió bien, el destinatario debería tener todos los parches queelegiste en su casilla de correo.</p><p>Para crear un archivo .patch individual, se usa git format-patch. De nuevo,‘-1’, por ejemplo, elige el último commit. Con ‘-o’ se elige el directorio enel que van a quedar los parches.</p><pre><code>git format-patch -1 -o /home/&lt;usuario&gt;</code></pre><p>Esta herramienta es útil por si se necesitan enviar los parches por otroprograma de manera adjunta. También puede generarse el parche para usarlo deargumento con send-email.</p><p>Más información (en inglés):</p><ul> <li><a href=\"https://git-send-email.io/\">Learn to use email with git!</a></li> <li><a href=\"https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/\">How to Use git send-email</a></li> <li><a href=\"https://git-scm.com/docs/git-send-email\">Manpage de git send-email</a></li> <li><a href=\"https://git-scm.com/docs/git-format-patch\">Manpage de git format-patch</a></li></ul>",
+ "url": "wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch",
+
+
+
+ "tags": ["git","control-de-versiones","email","remoto"],
+
+ "date_published": "2021-04-10T00:00:00-04:00",
+ "date_modified": "2021-04-10T00:00:00-04:00",
+
+ "author":
+ "{"twitter"=>nil, "name"=>nil, "avatar"=>nil, "email"=>nil, "url"=>nil}"
+
+
+ },
+
+ {
"id": "wiki.texto-plano.xyz/2021/03/24/aprende-a-usar-la-terminal",
"title": "Aprende a usar la terminal",
"summary": null,
diff --git a/_site/index.html b/_site/index.html
index 6ac4814..e657485 100644
--- a/_site/index.html
+++ b/_site/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Wiki Texto-Plano" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/" /><meta property="og:url" content="wiki.texto-plano.xyz/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Wiki Texto-Plano" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"name":"Wiki Texto-Plano","description":"Wiki del proyecto Texto-Plano","@type":"WebSite","url":"wiki.texto-plano.xyz/","headline":"Wiki Texto-Plano","@context":"https://schema.org"}</script><title> Wiki Texto-Plano - Wiki del proyecto Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" class="active">Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><ul><li><a href="/2021/03/24/aprende-a-usar-la-terminal">Aprende a usar la terminal</a><time datetime="2021-03-24T21:52:00-03:00">24-03-2021</time></li><li><a href="/2021/01/23/como-configurar-la-confianza-de-las-claves-gnu-pg">Cómo configurar la confianza de las claves GPG.</a><time datetime="2021-01-23T23:37:00-03:00">23-01-2021</time></li><li><a href="/2021/01/23/cifrado-de-correo-electronico-con-gpg-y-mutt">Cifrado de correo electronico con GPG y Mutt</a><time datetime="2021-01-23T23:24:00-03:00">23-01-2021</time></li><li><a href="/2021/01/23/uso-de-claves-de-cifrado-con-gpg">Uso de claves de cifrado con GPG</a><time datetime="2021-01-23T23:03:00-03:00">23-01-2021</time></li><li><a href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/irssi-como-proxy">Irssi como proxy</a><time datetime="2021-01-22T22:46:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/recibir-el-correo-fuera-del-servidor">Recibir el correo fuera del servidor</a><time datetime="2021-01-22T22:39:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/juegos-en-texto-plano-xyz">Juegos en texto-plano.xyz</a><time datetime="2021-01-22T22:21:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/gab-un-chat-asincrono">Gab: Un chat asíncrono</a><time datetime="2021-01-22T22:16:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/cambiar-el-interprete-de-comandos">Cambiar el intérprete de comandos</a><time datetime="2021-01-22T22:07:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/tutorial-basico-de-la-consola">Tutorial basico de la consola</a><time datetime="2021-01-22T21:43:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/tmux">Uso básico de tmux</a><time datetime="2021-01-22T21:11:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/usar-clave-ssh">Claves públicas, claves privadas y SSH ¿Para qué sirven?</a><time datetime="2021-01-22T21:04:00-03:00">22-01-2021</time></li></ul></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Wiki Texto-Plano" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/" /><meta property="og:url" content="wiki.texto-plano.xyz/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Wiki Texto-Plano" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"name":"Wiki Texto-Plano","description":"Wiki del proyecto Texto-Plano","@type":"WebSite","url":"wiki.texto-plano.xyz/","headline":"Wiki Texto-Plano","@context":"https://schema.org"}</script><title> Wiki Texto-Plano - Wiki del proyecto Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" class="active">Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><ul><li><a href="/2021/04/10/git-send-email-y-git-format-patch">Cómo enviar commits en forma de parches con git send-email y git format-patch</a><time datetime="2021-04-10T00:00:00-04:00">10-04-2021</time></li><li><a href="/2021/03/24/aprende-a-usar-la-terminal">Aprende a usar la terminal</a><time datetime="2021-03-24T21:52:00-03:00">24-03-2021</time></li><li><a href="/2021/01/23/como-configurar-la-confianza-de-las-claves-gnu-pg">Cómo configurar la confianza de las claves GPG.</a><time datetime="2021-01-23T23:37:00-03:00">23-01-2021</time></li><li><a href="/2021/01/23/cifrado-de-correo-electronico-con-gpg-y-mutt">Cifrado de correo electronico con GPG y Mutt</a><time datetime="2021-01-23T23:24:00-03:00">23-01-2021</time></li><li><a href="/2021/01/23/uso-de-claves-de-cifrado-con-gpg">Uso de claves de cifrado con GPG</a><time datetime="2021-01-23T23:03:00-03:00">23-01-2021</time></li><li><a href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/irssi-como-proxy">Irssi como proxy</a><time datetime="2021-01-22T22:46:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/recibir-el-correo-fuera-del-servidor">Recibir el correo fuera del servidor</a><time datetime="2021-01-22T22:39:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/juegos-en-texto-plano-xyz">Juegos en texto-plano.xyz</a><time datetime="2021-01-22T22:21:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/gab-un-chat-asincrono">Gab: Un chat asíncrono</a><time datetime="2021-01-22T22:16:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/cambiar-el-interprete-de-comandos">Cambiar el intérprete de comandos</a><time datetime="2021-01-22T22:07:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/tutorial-basico-de-la-consola">Tutorial basico de la consola</a><time datetime="2021-01-22T21:43:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/tmux">Uso básico de tmux</a><time datetime="2021-01-22T21:11:00-03:00">22-01-2021</time></li><li><a href="/2021/01/22/usar-clave-ssh">Claves públicas, claves privadas y SSH ¿Para qué sirven?</a><time datetime="2021-01-22T21:04:00-03:00">22-01-2021</time></li></ul></section></main></body></html>
diff --git a/_site/search.json b/_site/search.json
index 80a9d32..7516032 100644
--- a/_site/search.json
+++ b/_site/search.json
@@ -2,6 +2,17 @@
{
+ "title" : "Cómo enviar commits en forma de parches con git send-email y git format-patch",
+ "url" : "/2021/04/10/git-send-email-y-git-format-patch",
+ "category" : "herramientas",
+ "tags" : "git, control-de-versiones, email, remoto",
+ "date" : "2021-04-10 00:00:00 -0400",
+ "description" : ""
+
+ } ,
+
+ {
+
"title" : "Aprende a usar la terminal",
"url" : "/2021/03/24/aprende-a-usar-la-terminal",
"category" : "ayuda",
diff --git a/_site/sitemap.xml b/_site/sitemap.xml
index bb9076d..077648f 100644
--- a/_site/sitemap.xml
+++ b/_site/sitemap.xml
@@ -2,11 +2,11 @@
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>wiki.texto-plano.xyz/about</loc>
-<lastmod>2021-03-24T22:02:48-03:00</lastmod>
+<lastmod>2021-04-10T23:56:28-04:00</lastmod>
</url>
<url>
<loc>wiki.texto-plano.xyz/buscar</loc>
-<lastmod>2021-03-24T22:02:48-03:00</lastmod>
+<lastmod>2021-04-10T23:56:28-04:00</lastmod>
</url>
<url>
<loc>wiki.texto-plano.xyz/2021/01/22/usar-clave-ssh</loc>
@@ -61,6 +61,10 @@
<lastmod>2021-03-24T21:52:00-03:00</lastmod>
</url>
<url>
+<loc>wiki.texto-plano.xyz/2021/04/10/git-send-email-y-git-format-patch</loc>
+<lastmod>2021-04-10T00:00:00-04:00</lastmod>
+</url>
+<url>
<loc>wiki.texto-plano.xyz/</loc>
</url>
<url>
diff --git a/_site/tag/control-de-versiones/index.html b/_site/tag/control-de-versiones/index.html
index 8ad6030..253c0f2 100644
--- a/_site/tag/control-de-versiones/index.html
+++ b/_site/tag/control-de-versiones/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: control-de-versiones" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/control-de-versiones/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/control-de-versiones/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: control-de-versiones" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/control-de-versiones/","headline":"Tag: control-de-versiones","@context":"https://schema.org"}</script><title> control-de-versiones - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #control-de-versiones</h1><ul><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: control-de-versiones" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/control-de-versiones/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/control-de-versiones/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: control-de-versiones" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/control-de-versiones/","headline":"Tag: control-de-versiones","@context":"https://schema.org"}</script><title> control-de-versiones - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #control-de-versiones</h1><ul><li><a class="post" href="/2021/04/10/git-send-email-y-git-format-patch">Cómo enviar commits en forma de parches con git send-email y git format-patch</a><time datetime="2021-04-10T00:00:00-04:00">04-10-2021</time></li><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
diff --git a/_site/tag/email/index.html b/_site/tag/email/index.html
index ae203f4..2f172e8 100644
--- a/_site/tag/email/index.html
+++ b/_site/tag/email/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: email" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/email/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/email/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: email" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/email/","headline":"Tag: email","@context":"https://schema.org"}</script><title> email - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #email</h1><ul><li><a class="post" href="/2021/01/23/como-configurar-la-confianza-de-las-claves-gnu-pg">Cómo configurar la confianza de las claves GPG.</a><time datetime="2021-01-23T23:37:00-03:00">01-23-2021</time></li><li><a class="post" href="/2021/01/23/cifrado-de-correo-electronico-con-gpg-y-mutt">Cifrado de correo electronico con GPG y Mutt</a><time datetime="2021-01-23T23:24:00-03:00">01-23-2021</time></li><li><a class="post" href="/2021/01/23/uso-de-claves-de-cifrado-con-gpg">Uso de claves de cifrado con GPG</a><time datetime="2021-01-23T23:03:00-03:00">01-23-2021</time></li></ul></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: email" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/email/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/email/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: email" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/email/","headline":"Tag: email","@context":"https://schema.org"}</script><title> email - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #email</h1><ul><li><a class="post" href="/2021/04/10/git-send-email-y-git-format-patch">Cómo enviar commits en forma de parches con git send-email y git format-patch</a><time datetime="2021-04-10T00:00:00-04:00">04-10-2021</time></li><li><a class="post" href="/2021/01/23/como-configurar-la-confianza-de-las-claves-gnu-pg">Cómo configurar la confianza de las claves GPG.</a><time datetime="2021-01-23T23:37:00-03:00">01-23-2021</time></li><li><a class="post" href="/2021/01/23/cifrado-de-correo-electronico-con-gpg-y-mutt">Cifrado de correo electronico con GPG y Mutt</a><time datetime="2021-01-23T23:24:00-03:00">01-23-2021</time></li><li><a class="post" href="/2021/01/23/uso-de-claves-de-cifrado-con-gpg">Uso de claves de cifrado con GPG</a><time datetime="2021-01-23T23:03:00-03:00">01-23-2021</time></li></ul></section></main></body></html>
diff --git a/_site/tag/git/index.html b/_site/tag/git/index.html
index a0bdbcb..06fcd9b 100644
--- a/_site/tag/git/index.html
+++ b/_site/tag/git/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: git" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/git/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/git/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: git" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/git/","headline":"Tag: git","@context":"https://schema.org"}</script><title> git - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #git</h1><ul><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: git" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/git/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/git/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: git" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/git/","headline":"Tag: git","@context":"https://schema.org"}</script><title> git - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #git</h1><ul><li><a class="post" href="/2021/04/10/git-send-email-y-git-format-patch">Cómo enviar commits en forma de parches con git send-email y git format-patch</a><time datetime="2021-04-10T00:00:00-04:00">04-10-2021</time></li><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
diff --git a/_site/tag/remoto/index.html b/_site/tag/remoto/index.html
index f9fb247..ae34a10 100644
--- a/_site/tag/remoto/index.html
+++ b/_site/tag/remoto/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: remoto" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/remoto/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/remoto/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: remoto" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/remoto/","headline":"Tag: remoto","@context":"https://schema.org"}</script><title> remoto - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #remoto</h1><ul><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
+<!DOCTYPE html><html lang="en" ><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Jekyll v4.2.0" /><meta property="og:title" content="Tag: remoto" /><meta property="og:locale" content="en_US" /><meta name="description" content="Wiki del proyecto Texto-Plano" /><meta property="og:description" content="Wiki del proyecto Texto-Plano" /><link rel="canonical" href="wiki.texto-plano.xyz/tag/remoto/" /><meta property="og:url" content="wiki.texto-plano.xyz/tag/remoto/" /><meta property="og:site_name" content="Wiki Texto-Plano" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="Tag: remoto" /><meta name="twitter:site" content="@" /> <script type="application/ld+json"> {"description":"Wiki del proyecto Texto-Plano","@type":"WebPage","url":"wiki.texto-plano.xyz/tag/remoto/","headline":"Tag: remoto","@context":"https://schema.org"}</script><title> remoto - Wiki Texto-Plano</title><link rel="shortcut icon" href="/favicon.ico"><link rel="alternate" type="application/atom+xml" title="Wiki Texto-Plano" href="/atom.xml"><link rel="alternate" type="application/json" title="Wiki Texto-Plano" href="wiki.texto-plano.xyz/feed.json" /><link rel="sitemap" type="application/xml" title="sitemap" href="/sitemap.xml" /><style> *,:after,:before{box-sizing:border-box;background-color:inherit;color:inherit;margin:0;padding:0}body{font-family:monospace;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.5;font-size:1rem;color:#16171a}.center-image{margin:0 auto;display:block}nav ul{border-right:1px solid #edf2f7}a{color:#000;text-decoration-skip-ink:auto;text-decoration:underline}pre{margin:.5rem 0;padding:.5rem}.post p{margin:.5rem 0}.post h1,.post h2,.post h3,.post h4{margin:1rem 0}.post h2:first-child,.project h2:first-child,.photo h2:first-child{margin-top:0}.meta{margin:2rem 0}code,pre{background:#ecedee}code{padding:.1rem}pre code{border:none}pre{padding:1rem;overflow-x:auto}img{max-width:100%}hr{background:#000;height:1px;border:0}header{flex-basis:10rem;flex-grow:1;position:relative}header a{text-decoration:none}header li{margin-bottom:.2rem;text-align:right;margin-right:2rem}header a.active{font-weight:bold}header,section{padding:1rem}blockquote{font-style:italic;border-left:5px solid #ececec;padding-left:1rem}h1,h2,h3,h4,h5{line-height:1;margin:1rem 0;font-weight:600}section h1:first-child{margin-top:0}strong,b{font-weight:bold}.photos ul{list-style:none}.photos li{margin-bottom:1.5rem}.photo picture,.project picture{margin-bottom:0.5rem}.posts ul,header ul{list-style:none}.posts li{align-items:center;display:flex;justify-content:space-between;margin-bottom:.5rem}.posts li a,.posts li div,.projects li a{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none}.posts li time,.projects li time{padding-left:1rem;white-space:nowrap;font-variant-numeric:tabular-nums}main{display:flex;flex-wrap:wrap;max-width:60rem;margin:2rem auto;padding:1rem}@media screen and (max-width: 45rem){header li{display:inline;margin-right:1rem}.logo{padding-bottom:1rem}header ul{border-bottom:1px solid #edf2f7;padding-bottom:2rem}nav ul{border-right:0px}.photos ul{margin-top:0.5rem}}section{flex-basis:0;flex-grow:999;min-width:70%;display:flex;flex-direction:column}figcaption{font-size:smaller}</style></head><body><main role="main"><header role="banner"> <!--<h1 class="logo">Wiki Texto-Plano</h1>--><nav role="navigation"><ul><li><a href="/" >Wiki</a></li><li><a href="https://texto-plano.xyz" >~tp</a></li><li><a href="/buscar" >Buscar</a></li><li><a href="/atom.xml" >Rss</a></li></ul></nav></header><section class="posts"><h1>Tag #remoto</h1><ul><li><a class="post" href="/2021/04/10/git-send-email-y-git-format-patch">Cómo enviar commits en forma de parches con git send-email y git format-patch</a><time datetime="2021-04-10T00:00:00-04:00">04-10-2021</time></li><li><a class="post" href="/2021/01/22/como-utilizar-el-repositorio-de-git-en-texto-plano">Cómo utilizar el repositorio de git en Texto-Plano</a><time datetime="2021-01-22T22:50:00-03:00">01-22-2021</time></li></ul></section></main></body></html>
Un proyecto texto-plano.xyz