Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

[Projeto] Resposta (Consolidando o seu conhecimento)

Passo 1

Criação do arquivo com exetensão HTML no diretório "D:/Projetos/Curso-Git-Github".

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Cursos da Alura</title>
</head>
<body>
    <ul>
        <li>Vagrant</li>
        <li>Docker</li>
        <li>Ansible</li>
        <li>Integração Continua</li>
    </ul>
</body>
</html>

Passo 2

No Git Bash naveguei até a pasta onde estava o arquivo index.html cd "D:\Projetos\Curso-Git-Github".

Passo 3

Usei o comando ls para me certificar que o arquivo estava na pasta em que eu acessei anteriormente e constatei que o arquivo index.html estava no caminho correto.

Passo 4

Executei o comando git init para inicializar um repositório Git e obtive o retorno: Initialized empty Git repository in D:/Projetos/Curso-Git-Github/.git/

Passo 5

Executei em seguida o comando git status para ver se o arquivo era reconhecido e foi obtido o retorno:

On branch main

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        index.html

nothing added to commit but untracked files present (use "git add" to track)

Passo 6

Para adicionar o arquivo usei o comando git add index.html.

Passo 7

Executei novamente o comando git status e obtive o seguinte retorno:

On branch main

No commits yet

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)
        new file:   index.html

Resultado!

Repositório do Git criado e arquivo adicionado para monitoramento

1 resposta
solução!

Oi, Aluno. Tudo bem?

Isso aí, tá certinho! Parabéns pelo progresso e por ter compartilhado aqui conosco.

Bons estudos!