Skip to content

Commit

Permalink
Merge pull request #1739 from josemoracard/jose2-patch-git-version-co…
Browse files Browse the repository at this point in the history
…ntrol

patch git-version-control
  • Loading branch information
tommygonzaleza authored Aug 16, 2023
2 parents 49464b7 + fd4d970 commit 91f5ea4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Los commit object padre son aquellos commits que vinieron primero. Generalmente

Al principio, un proyecto siempre tiene un commit object sin padre. Este es el primer commit que se realiza en el repositorio del proyecto.

## Un Head es una Lista de Commits.
## Un Head es una Lista de Commits

Los heads de un repositorio son como el "historial de revisión de un proyecto". Un historial de revisión es una lista de commit objects que contienen todos los cambios que tú y los demás miembros de tu equipo han realizado en los archivos del proyecto.

Expand Down Expand Up @@ -314,7 +314,7 @@ Una rama que **rastrea** una rama remota conserva una referencia interna a la ra

Lo importante a tener en cuenta es que ahora tienes una copia completa del repositorio completo de tu amigo. Cuando se ramifica, confirma (commit), fusiona u opera de otra manera en el repositorio, operas solo en tu propio repositorio. GIT solo interactúa con el repositorio de tu amigo cuando le pidas específicamente que lo haga.

> 🔗 Aquí hay una lista de otros excelentes recursos para aprender GIT.: http://sixrevisions.com/resources/git-tutorials-beginners/<br>Especialmente deberías probar estos dos:<br>• https://try.github.io<br>• http://learngitbranching.js.org/
> 🔗 Aquí hay una lista de otros excelentes recursos para aprender GIT: http://sixrevisions.com/resources/git-tutorials-beginners/<br>Especialmente deberías probar estos dos:<br>• https://try.github.io<br>• http://learngitbranching.js.org/


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ For example: Let’s say that you are starting to develop the "Login" feature/fu

> **Note on Terminology:** The terms "branch" and "head" are nearly synonyms in GIT. Every branch is represented by one head, and every head represents one branch. Sometimes, "branch" will be used to refer to a head and the entire history of commits preceding that head, whereas "head" will be used to refer exclusively to a single commit object (the most recent commit in the branch).
## Starting a New Repo** `git init`
## Starting a New Repo `git init`

You can create a new repository whenever you want during the project, it does not have to be at the beginning! The only essential thing to do is that the project has no other repository that has already been created.

Expand Down

0 comments on commit 91f5ea4

Please sign in to comment.