Estoy haciendo todo tal cual, lo primero que hice fue hacer un cd a la carpeta donde está mi archivo html, y ahi hacer un git init y el bash me dijo esto:
$ git init
Initialized empty Git repository in C:/Users/Alejandro/Documents/GitProjects/.git/
después hice un git status y esto aparecio:
On branch master
On branch master
#
No commits yet
#
Untracked files:
(use "git add ..." to include in what will be committed)
Cursos_de_Alura.html
#
nothing added to commit but untracked files present (use "git add" to track)
**después hice un git add . para agregar toda la carpeta:**
On branch master
#
No commits yet
#
Changes to be committed:
(use "git rm --cached ..." to unstage)
new file: Cursos_de_Alura.html
# Después hice un git commit -m:
$ git commit -m "Creando archivo index.html con lista de cursos"
Author identity unknown
#
*** Please tell me who you are.
#
Run
#
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
#
to set your account's default identity.
Omit --global to set the identity only in this repository.
#
fatal: unable to auto-detect email address (got 'Alejandro@optiplex760.(none)')
**después puse un**
git config --global user.email "alejandroshkn@gmail.com"
git config --global user.name "Alejandro"
#
Después hice una modificación a mi html con la acentuación que faltaba y lo guardé, despues en el bash puse git status y ya no me dijo nada el bash y en el video al profesor si le decía lo que se había modificado y a mi solamente me decía esto: $ git commit -m "Arreglado acento en el curso de integración continua" On branch master nothing to commit, working tree clean
**y al hacer un git log solo me decia el primer commit -m que hice:**
$ git log
commit e382ce2cde586170a77e72ac8c580f0560a6d145 (HEAD -> master)
Author: unknown alexshkn@gmail.com
Date: Sat Jan 14 11:22:38 2023 -0600
#
Creando archivo index.html con lista de cursos
#