FreeCAD-Doc/localwiki/Source_code_management-es.html
2018-07-19 18:47:02 -05:00

157 lines
12 KiB
HTML

<html><head><title>Source code management/es</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Source code management/es</h1></div>
<div id="mw-content-text" lang="es" dir="ltr" class="mw-content-ltr"><hr/>
<div class="mw-parser-output"><p>Our main source code management tool is <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Git_%28software%29">git</a>. This article explains how to use it and how some general rules apply in the case of FreeCAD. You are highly advised to learn how git works first (there are a lot of tutorials and docs available for git on the internet) before working with the FreeCAD source code.
</p><p>There are also many good graphical clients to git, such as <a rel="nofollow" class="external text" href="http://github.com/git-cola/git-cola">git-cola</a>, that make the whole process of managing git repositories easier.
</p>
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Source_Code_Access"><span class="tocnumber">1</span> <span class="toctext">Source Code Access</span></a>
<ul>
<li class="toclevel-2 tocsection-2"><a href="#Official_GitHub_Repo"><span class="tocnumber">1.1</span> <span class="toctext">Official GitHub Repo</span></a></li>
<li class="toclevel-2 tocsection-3"><a href="#Setting_your_git_username"><span class="tocnumber">1.2</span> <span class="toctext">Setting your git username</span></a>
<ul>
<li class="toclevel-3 tocsection-4"><a href="#Fork_on_GitHub"><span class="tocnumber">1.2.1</span> <span class="toctext">Fork on GitHub</span></a></li>
<li class="toclevel-3 tocsection-5"><a href="#Git_clone_to_your_local_machine"><span class="tocnumber">1.2.2</span> <span class="toctext">Git clone to your local machine</span></a></li>
</ul>
</li>
<li class="toclevel-2 tocsection-6"><a href="#Alternative_repositories"><span class="tocnumber">1.3</span> <span class="toctext">Alternative repositories</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-7"><a href="#Git_Development_Process"><span class="tocnumber">2</span> <span class="toctext">Git Development Process</span></a>
<ul>
<li class="toclevel-2 tocsection-8"><a href="#Ramificado"><span class="tocnumber">2.1</span> <span class="toctext">Ramificado</span></a></li>
<li class="toclevel-2 tocsection-9"><a href="#Env.C3.ADo"><span class="tocnumber">2.2</span> <span class="toctext">Envío</span></a></li>
<li class="toclevel-2 tocsection-10"><a href="#Publishing_your_work_on_your_GitHub_repository"><span class="tocnumber">2.3</span> <span class="toctext">Publishing your work on your GitHub repository</span></a></li>
<li class="toclevel-2 tocsection-11"><a href="#Escribiendo_buenos_mensajes_de_env.C3.ADo"><span class="tocnumber">2.4</span> <span class="toctext">Escribiendo buenos mensajes de envío</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-12"><a href="#Otras_lecturas"><span class="tocnumber">3</span> <span class="toctext">Otras lecturas</span></a></li>
</ul>
</div>
<h2><span class="mw-headline" id="Source_Code_Access">Source Code Access</span></h2>
<p>Everybody can access and get a copy of the FreeCAD source code, but only the FreeCAD project managers have write access to it. You can get a copy of the code, study it and modify it as you wish, but if you make a change that you wish to see included in the official source code, you need to ask for a pull request on the <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewforum.php?f=17">pull requests</a> section of the FreeCAD forum.
</p>
<div class="note"><b>NOTE</b>
<p>In all examples below, "USERNAME" represents your GitHub user account.
</p>
</div>
<p><br />
</p>
<h3><span class="mw-headline" id="Official_GitHub_Repo">Official GitHub Repo</span></h3>
<p>An easy way to start with the FreeCAD source code is using the official FreeCAD repository at
<a rel="nofollow" class="external free" href="https://github.com/FreeCAD/FreeCAD">https://github.com/FreeCAD/FreeCAD</a>
</p>
<h3><span class="mw-headline" id="Setting_your_git_username">Setting your git username</span></h3>
<p>Users should commit to their project repository using their GitHub username.
If that is not already set globally, you can set it locally for the current Git repository like this:
</p>
<pre>git config user.name "YOUR NAME"
git config user.email "USERNAME@users.noreply.github.com"
</pre>
<p>Ahora puedes utilizar alguna combinación de los comandos "git add" y "git commit" para crear uno o más envíos en tu repositorio local.
</p>
<h4><span class="mw-headline" id="Fork_on_GitHub">Fork on GitHub</span></h4>
<p>You can start simply by using the "fork" button on top of the above page. This will create a copy of the FreeCAD repository on your own GitHub account. The general procedure is as follows:
</p>
<ol><li> <a rel="nofollow" class="external text" href="https://github.com/join">Sign up</a> for a GitHub account </li>
<li> Go to the FreeCAD repo: <a rel="nofollow" class="external free" href="https://github.com/FreeCAD/FreeCAD">https://github.com/FreeCAD/FreeCAD</a></li>
<li> Press the "Fork" button</li>
<li> On your machine, clone your newly created FreeCAD fork:
<dl><dd> <pre>git clone https://github.com/USERNAME/FreeCAD.git</pre></dd></dl></li>
<li> Create and checkout a new branch simultaneously
<dl><dd> <pre>git checkout -b newfeature</pre></dd></dl></li>
<li> Commit your changes to that new branch</li>
<li> Push that new branch to your GitHub repo</li></ol>
<h4><span class="mw-headline" id="Git_clone_to_your_local_machine">Git clone to your local machine</span></h4>
<p>You can also start normally, without using the "fork" button:
</p>
<ol><li> Clone the FreeCAD code with git:
<dl><dd> <pre>git clone https://github.com/FreeCAD/FreeCAD.git</pre></dd></dl></li>
<li> Create and checkout a new branch simultaneously
<dl><dd> <pre>git checkout -b newfeature</pre></dd></dl></li>
<li> Commit your changes to that new branch</li>
<li> Create an account on a public git server (GitHub, GitLab, etc...)</li>
<li> Push your branch to that server</li></ol>
<p><i>Important Note</i>: If you have code you wish to see merged into the FreeCAD source code, please post a note in the <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewforum.php?f=17">Pull Requests</a> section of the FreeCAD forum.
</p>
<h3><span class="mw-headline" id="Alternative_repositories">Alternative repositories</span></h3>
<p>The beauty of git is that everybody can clone a project, and start modifying the code. Several frequent collaborators of the FreeCAD project have their own git repository, where they build up their work before it is ready to be included in the official source code, or simply where they experiment new ideas. In certain cases, you might want to clone your FreeCAD code from one of these, instead of the official repos, to benefit from the changes their users did.
</p><p>Be warned, though, that this is at your own risk, and only the official repository above is fully guaranteed to work and contain clean code.
</p><p>It is also possible to attach several remote repositories to a same local FreeCAD git code, using the "git remote" command. This is useful to keep in sync with the master code branch, but keep an eye on the work of different developers.
</p>
<h2><span class="mw-headline" id="Git_Development_Process">Git Development Process</span></h2>
<p>First of all <b>never develop on the <i>master</i> branch!</b> Create a local branch for development.
You can learn how to do this <a rel="nofollow" class="external text" href="http://book.git-scm.com/3_basic_branching_and_merging.html">here</a>.
</p>
<h3><span class="mw-headline" id="Ramificado">Ramificado</span></h3>
<p>Una importante característica de Git es que es extremadamente sencillo trabajar con ramas y fusionarlas. La mejor forma de trabajar recomienda crear una nueva rama siempre que quieras trabajar en una nueva característica. La creación de una rama se hace con:
</p>
<pre>git branch myNewBranch
git checkout myNewBranch
</pre>
<p>o, ambas operaciones en una:
</p>
<pre>git checkout -b myNewBranch
</pre>
<p>siempre puedes comprobar con que rama estas:
</p>
<pre>git branch
</pre>
<h3><span class="mw-headline" id="Env.C3.ADo">Envío</span></h3>
<p>Una vez que hagas algo de trabajo, envíalo con:
</p>
<pre>git commit -a
</pre>
<p>A diferencia de SVN, tienes que especificar los archivos que quieres enviar (o todos con la opción -a). Tu editor de texto se abrirá para permitirte escribir un mensaje de envío.
</p>
<h3><span class="mw-headline" id="Publishing_your_work_on_your_GitHub_repository">Publishing your work on your GitHub repository</span></h3>
<p>After done some changes on your local branch and commit it (this means commit
<i>locally</i>) you can push your repository to the server. This opens your branch
to the public and allows the main developers to review and integrate your
branch into <i>master</i>.
</p>
<pre>git push my-branch
</pre>
<h3><span class="mw-headline" id="Escribiendo_buenos_mensajes_de_env.C3.ADo">Escribiendo buenos mensajes de envío</span></h3>
<p>Deberías tratar de trabajar en pedazos pequeños. Si no puedes resumir tus cambios en una frase, entonces posiblemente ha pasado pasado demasiado tiempo desde que hiciste un envío. También es importante que ofrezcas descripciones de tu trabajo que sean útiles y ayuden. Para los mensajes de envío, FreeCAD ha adoptado un formato mencionado en el libro Pro Git (mira <a href="#Otras_lecturas">#Otras lecturas</a>).
</p>
<pre> Resumen corto (50 caracteres o menos) de cambios
</pre>
<pre>Texto de explicación más detallado, si es necesario. En unos 72 caracteres.
En algunos contextos, la primera línea es tratada como el tema
de un email y el resto del texto como el cuerpo. La línea en blanco
separando el tema del cuerpo es crítica (a menos que omitas el cuerpo por
completo); las herramientas de recálculo se pueden confundir si pones los
dos juntos.
Más párrafos van después de líneas en blanco.
- Las listas con viñetas también están bien
- Tipicamente un guión o asterisco se utiliza para la viñeta, precedido
por un espacio en blanco, con líneas en blanco en medio, pero las
convenciones aquí varían
</pre>
<p>Si estas haciendo un montón de trabajo relacionado, se sugiere <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?f=10&amp;t=2062&amp;p=14887#p14886">aquí</a> que deberías hacer tantos envíos grandes o pequeños como sea necesario para que tengan sentido en lo que estés trabajando utilizado los mensajes cortos de envío. Cuando quieras fusionarlos, haz un registro master..BRANCH y utiliza el resultado para tu mensaje de envío. Cuando fusionas con el principal utiliza la opción --squash y envía con tu mensaje de envío. Esto te permitirá ser muy liberal con tus envíos y ayudar a proporcionar un buen nivel de detalle en los mensajes de envío sin demasiadas descripciones distintas.
</p>
<h2><span class="mw-headline" id="Otras_lecturas">Otras lecturas</span></h2>
<ul><li> <a rel="nofollow" class="external text" href="http://spheredev.org/wiki/Git_for_the_lazy">Git para los perezosos</a></li>
<li> <a rel="nofollow" class="external text" href="http://progit.org/book/">Git pro libro on-line</a></li></ul>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Source_code_management/es&amp;oldid=222502">http://www.freecadweb.org/wiki/index.php?title=Source_code_management/es&amp;oldid=222502</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>