We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd6124d + 97ad734 commit 4a126fcCopy full SHA for 4a126fc
Comandos_GIT.txt
@@ -20,3 +20,12 @@ git status
20
git fetch
21
22
git pull origin main
23
+
24
+# decarta todos los archivos al ultimo commit
25
+git reset --hard
26
27
+# para descartar cambios solo de un archivo especifico
28
+git checkout HEAD -- main.c
29
30
+# ver imagen mas reducida de los commit
31
+git log --oneline
README.md
@@ -7,4 +7,6 @@ Lista de archivos:
7
main.c
8
9
# Docuentacion (DEV 1)
10
-# Documentatacion (DEV 2)
11
+# Documentatacion (DEV 2)
12
main.c
@@ -1,3 +1,6 @@
1
int main(void){
2
printf("Hola mundo");
3
4
+ //cambio 1
5
+ //cambio 2
6
}
0 commit comments