Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arthurlunkes/curso_git
Repositório criado a fim de salvar meu aprendizado sobre GIT.
https://github.com/arthurlunkes/curso_git
git git-repository github-repository learning repository
Last synced: 20 days ago
JSON representation
Repositório criado a fim de salvar meu aprendizado sobre GIT.
- Host: GitHub
- URL: https://github.com/arthurlunkes/curso_git
- Owner: arthurlunkes
- Created: 2023-08-09T22:57:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-10T15:57:23.000Z (over 1 year ago)
- Last Synced: 2025-01-06T13:54:16.138Z (20 days ago)
- Topics: git, git-repository, github-repository, learning, repository
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aprendendo GIT
![desafio 1](https://github.com/arthurlunkes/Aprendendo_GIT/blob/main/Funcionamento%20GIT.png)
## Local vs Remoto
A diferença entre
## Ramificação(Famosa Branch)
As ramificações(ou branchs), servem como se fosse um histórico de alterações.
## Alguns comandos e para que servem
- O comando abaixo insere os arquivos na stage:
```bash
git add . OR git add filename.extesion
```
- O comando abaixo serve para contar os commits:
```bash
git rev-list --count HEAD
```
- O comando abaixo serve para exibir o histórico de alteração:
```bash
git log --oneline
```
-```bash
git checkout //terminar código
```