<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Repository on Commentary of Takao</title><link>https://takao.blog/es/tags/repository/</link><description>Recent content in Repository on Commentary of Takao</description><generator>Hugo -- gohugo.io</generator><language>es</language><copyright>Commentary of Takao</copyright><lastBuildDate>Sun, 12 Jul 2026 04:12:51 +0900</lastBuildDate><atom:link href="https://takao.blog/es/tags/repository/index.xml" rel="self" type="application/rss+xml"/><item><title>Guía completa de Git para desarrolladores web</title><link>https://takao.blog/es/web/how-to-git/</link><pubDate>Sun, 10 Sep 2023 00:00:00 +0900</pubDate><guid>https://takao.blog/es/web/how-to-git/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/how-to-git-es.png" alt="Featured image of post Guía completa de Git para desarrolladores web" /&gt;&lt;p&gt;Git es el sistema de control de versiones esencial para el desarrollo web moderno. Esta guía cubre desde la configuración inicial hasta flujos de equipo.&lt;/p&gt;
&lt;h2 id="configuración-inicial"&gt;Configuración inicial
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;git config --global user.name &lt;span style="color:#e6db74"&gt;&amp;#34;Tu Nombre&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;git config --global user.email &lt;span style="color:#e6db74"&gt;&amp;#34;email@ejemplo.com&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;git config --global init.defaultBranch main
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="flujo-diario"&gt;Flujo diario
&lt;/h2&gt;&lt;p&gt;&lt;code&gt;git pull&lt;/code&gt; → &lt;code&gt;git checkout -b feature/nombre&lt;/code&gt; → trabajo → &lt;code&gt;git add&lt;/code&gt; → &lt;code&gt;git commit&lt;/code&gt; → &lt;code&gt;git push -u origin feature/nombre&lt;/code&gt; → abrir PR.&lt;/p&gt;
&lt;h2 id="resolución-de-conflictos"&gt;Resolución de conflictos
&lt;/h2&gt;&lt;p&gt;Los conflictos ocurren cuando dos ramas modifican las mismas líneas. Márcalos: &lt;code&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/code&gt;, &lt;code&gt;=======&lt;/code&gt;, &lt;code&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/code&gt;. Resuelve, &lt;code&gt;git add&lt;/code&gt;, &lt;code&gt;git commit&lt;/code&gt;.&lt;/p&gt;</description></item></channel></rss>