|
|
|
# Materiais de Estudo
|
|
|
|
|
|
|
|
## Estudos Git
|
|
|
|
|
|
|
|
- **Introdução ao Git**
|
|
|
|
[Tutorial do Git - Introdução](https://www.hostinger.com.br/tutoriais/tutorial-do-git-basics-introducao/)
|
|
|
|
|
|
|
|
- **Tutorial do Vinicius Branco**
|
|
|
|
[Link para Download](#) _(insira aqui o link para download)_
|
|
|
|
|
|
|
|
- **Aprendendo a fazer seus primeiros commits**
|
|
|
|
[Hello World - GitHub Guides](https://guides.github.com/activities/hello-world/)
|
|
|
|
|
|
|
|
- **Ferramentas para facilitar o uso do Git**
|
|
|
|
- [GitKraken](https://www.gitkraken.com/)
|
|
|
|
- [GitHub Desktop](https://desktop.github.com/)
|
|
|
|
|
|
|
|
- **Alguns conceitos importantes no uso do Git**
|
|
|
|
- Definition of DoD and DoR
|
|
|
|
- Introdução aos fluxos de trabalho Git
|
|
|
|
- Aprendendo o GitFlow
|
|
|
|
|
|
|
|
- **Listinha de comandos úteis**
|
|
|
|
- Criar branch:
|
|
|
|
```bash
|
|
|
|
git branch nomedabranch
|
|
|
|
```
|
|
|
|
- Deletar branch:
|
|
|
|
```bash
|
|
|
|
git branch -d nomedabranch
|
|
|
|
```
|
|
|
|
- Ir para uma branch:
|
|
|
|
```bash
|
|
|
|
git checkout nomedabranch
|
|
|
|
```
|
|
|
|
- Listar branches locais:
|
|
|
|
```bash
|
|
|
|
git branch -l
|
|
|
|
```
|
|
|
|
- Adicionar itens ao commit:
|
|
|
|
```bash
|
|
|
|
git add nomedoarquivo
|
|
|
|
```
|
|
|
|
- Fazer commit:
|
|
|
|
```bash
|
|
|
|
git commit -m 'mensagem informativa sobre o commit'
|
|
|
|
```
|
|
|
|
- Fazer push para o repositório remoto (branch ainda não existe no remoto):
|
|
|
|
```bash
|
|
|
|
git push --set-upstream origin nomedabranch
|
|
|
|
```
|
|
|
|
- Fazer push para o repositório remoto (branch existe no remoto):
|
|
|
|
```bash
|
|
|
|
git push
|
|
|
|
```
|
|
|
|
- Fazer pull do remoto:
|
|
|
|
```bash
|
|
|
|
git pull
|
|
|
|
```
|
|
|
|
|
|
|
|
## Estudos Javascript e React
|
|
|
|
|
|
|
|
- **Material de estudos**
|
|
|
|
[Rocketseat](https://rocketseat.com.br/)
|
|
|
|
- Curso de Javascript
|
|
|
|
- Curso de React Native
|
|
|
|
|
|
|
|
- **Learn React.js - Full Course for Beginners - Tutorial 2019 (inglês)**
|
|
|
|
[Tutorial no YouTube](https://www.youtube.com/watch?v=DLX62G4lc44)
|
|
|
|
|
|
|
|
- **Tutorial simples para criação de formulários no ReactJS**
|
|
|
|
[Documentação do ReactJS - Forms](https://pt-br.reactjs.org/docs/forms.html) |