-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuevo.html
17 lines (17 loc) · 878 Bytes
/
nuevo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prueba</title>
</head>
<body>
<h1>ESTE ES UN NUEVO TITULO</h1> <!-- para conectar el repositorio en github (git remote add origin + url)-->
<h2> Este es un segundo titulo</h2> <!--para enviar el contenido repost ( git push origin main) -->
<h2> para trer cambios del repositorio</h2> <!-- (git pull origin main)-->
<h2>para crear una nueva rama</h2> <!-- git checkout - b (nombre de la rama que va a crear)-->
<h2> para moverse entre las ramas</h2> <!-- git checkout (nombre de la rama existente)-->
<h2> realizar un merge ***** enviar los cambios de una rama a la rama principal</h2> <!-- git merge (rama que desea enviar)-->
</body>
</html>