Presta atención porque en esta crónica vas a hallar el resultado que buscas.Esta sección ha sido probado por nuestros expertos para asegurar la calidad y veracidad de nuestro post.
Ejemplo 1: cómo crear una nueva rama
How to create a new branch in git
$ git checkout -b good
here good is new branch name
the line 3 after executing we will go to that branch
Ejemplo 2: fusionar rama git
1. //pull the latest changes of current development branch if any
git pull (current development branch)
2. //switch to master branch
git checkout master
3. //pull all the changes if any
git pull
4. //Now merge development into master
git merge development
5. //push the master branch
git push origin master
Sección de Reseñas y Valoraciones
Si estás de acuerdo, tienes el poder dejar un tutorial acerca de qué te ha impresionado de este enunciado.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)