Vertaling van "git add" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Next we run git add on it to stage it into our index.
A continuación, ejecutamos git add para ubicarlo en nuestro índice.
In the console, we would use the git add command.
En la consola, utilizamos el git add comando.
To stage it, you run the git add command.
Para prepararlo, ejecutas el comando git add.
Run git add to add it, and then run the above command.
Ejecuta git add para agregarlo, y luego corre el comando de arriba.
In order to begin tracking a new file, you use the command git add.
Para versionar un archivo nuevo, puedes utilizar el comando git add.
In order to begin tracking a new file, you use the command git add.
Para comenzar a rastrear un archivo debes usar el comando git add.
If we now run 'git add' on the file it will update our index.
Si ahora ejecutamos git add en el archivo, se actualizará el índice.
In order to begin tracking a new file, you use the command git add.
Para empezar el seguimiento de un nuevo archivo se usa el comando git add.
In this case, use git add -i, whose interface is less straightforward, but more flexible.
En este caso, usa git add -i, cuya interfaz es menos clara pero más flexible.
If we look at the diagram for that command and think about what git add does, they are exact opposites.
Si miramos el diagrama para ese comando y pensamos en lo que hace git add, son exactamente opuestos.
It is similar to git add in that it stages a removal of a file for the next commit.
Es similar a git add en que pone en escena una eliminación de un archivo para la próxima confirmación.
The above only keeps track of the files that were present when you first ran git add.
El comando anterior solo seguirá la pista de los archivos que estaban presentes la primera vez que ejecutaste git add.
git add -A adds everything, including deletions
git add -A agrega todo, incluyendo archivos eliminados.