├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | privada/ 2 | privado.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -- Clonar repositorio -- 2 | cd C:\Users\raspi\Downloads\Interfaces Web\Practica 1 3 | git clone https://github.com/SebastianMedina2023/iw2023ittepic.git 4 | 5 | -- Hacer un commit -- 6 | cd iw2023ittepic 7 | git add . 8 | git commit -m "Initial commit" 9 | 10 | -- Ignorar archivos -- 11 | touch .gitignore 12 | git add .gitignore 13 | git commit -m "Agregando el gitignore" 14 | 15 | -- Añadir archivo 1.txt -- 16 | touch 1.txt 17 | git add 1.txt 18 | git commit -m "Agregar archivo 1.txt" 19 | 20 | -- Agregando un tag -- 21 | git tag v0.1 22 | git push --tags 23 | 24 | -------------------------------------------------------------------------- 25 | | Nombre | Github | 26 | |-----------------------------------|------------------------------------| 27 | | Miguel Israel De Robles Ramirez | https://github.com/MDeRobles | 28 | | Eduardo Rosalio Hernandez Montes | https://github.com/LalokeraXD | 29 | | Marlett Alessandra Marín Bautista | https://github.com/Alessandra222 | 30 | | Juan Antonio Graxiola Quiróz | https://github.com/Railgun124 | 31 | | Sandra Lizbeth Esperanza Machuca | https://github.com/saliesperanzama | 32 | 33 | ![image](https://github.com/SebastianMedina2023/iw2023ittepic/assets/143011213/3c413b78-03da-4dce-9597-d3ee43088fae) 34 | --------------------------------------------------------------------------------