Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arrumando bagunça #35

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
10 changes: 9 additions & 1 deletion comandos-avancados.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ Após resolver os conflitos, adicione os arquivos modificados usando git add nom

Faça um novo commit para finalizar o processo de merge.

Mais informações em [Resolvendo conflitos](./resolvendo-conflitos.md).

---
## Recursos Avançados
O Git oferece recursos avançados para lidar com casos específicos e fluxos de trabalho complexos. Aqui estão alguns deles:
Expand All @@ -110,19 +112,25 @@ git rebase -i commit_referencia

Esse comando permite reorganizar, editar ou combinar commits antes deles serem adicionados ao histórico principal.

Tutorial rápido e interativo no [link](https://www.youtube.com/watch?v=kMvLn8WcAII&ab_channel=Ihatetomatoes).

### Cherry-pick

```bash
git cherry-pick commit_referencia
```

Esse comando permite aplicar um commit específico a um branch diferente.
Esse comando permite aplicar um commit específico a um branch diferente.

Tutorial rápido e interativo no [link](https://www.youtube.com/watch?v=wIY824wWpu4&ab_channel=Ihatetomatoes).

---
## Submódulos

Os submódulos permitem incluir outros repositórios Git como pastas em um repositório principal.

Mais informações no [link](https://www.atlassian.com/br/git/tutorials/git-submodule).

---
## Tags

Expand Down
2 changes: 2 additions & 0 deletions comandos-iniciais.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Tutorial de Git - Comandos Iniciais

Tutorial completo como instalar e usar o git no [link](https://www.atlassian.com/br/git/tutorials/install-git).

<div style="text-align:justify">
Este é um tutorial de Git que abrange alguns dos comandos básicos para começar a usar o Git em um projeto.
</div>
Expand Down