Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
Arrumando comandos iniciais giovanniacg#2
Browse files Browse the repository at this point in the history
  • Loading branch information
LexTOliver committed May 30, 2023
1 parent 45fc990 commit 6c19832
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions comandos-iniciais.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
Este é um tutorial de Git que abrange alguns dos comandos básicos para começar a usar o Git em um projeto.
</div>

## Instalação

A instalação abaixo é feita para ambientes Linux, baseados na distribuição Debian. Para instalação no Windows, recomenda-se instalar conforme este [tutorial](https://www.youtube.com/watch?v=4xqVv2lTo40).


```
sudo apt update
sudo apt install git-all
```

Obs.: É necessário permissão de administrador para executar os comandos.

É possível verificar se a instalação foi concluída pelo comando a seguir:

```
git --version
```

## Configuração Inicial

<div style="text-align:justify">
Expand Down Expand Up @@ -109,4 +127,15 @@ git log

Esse comando mostra uma lista de commits no repositório, exibindo informações como autor, data, hora e mensagem do commit.

</div>

## Referências adicionais

<div style="text-align:justify">

* <a href="https://git-scm.com/doc">Documentação do Git</a>
* <a href="">Documentação Atlassian do Git</a>
* <a href="https://www.w3schools.com/git/">Tutorial W3Schools</a>
* <a href="https://youtu.be/8JJ101D3knE">Learn Git in 1 Hour</a>

</div>

0 comments on commit 6c19832

Please sign in to comment.