... | @@ -61,3 +61,65 @@ MR serão aprovados para as branchs respeitando a nomenclatura definida na image |
... | @@ -61,3 +61,65 @@ MR serão aprovados para as branchs respeitando a nomenclatura definida na image |
|
• fix/\[descrição_do_bug\] para main
|
|
• fix/\[descrição_do_bug\] para main
|
|
|
|
|
|
• US0xx/\[descrição_da_tarefa\] para dev
|
|
• US0xx/\[descrição_da_tarefa\] para dev
|
|
|
|
|
|
|
|
## Comandos básicos
|
|
|
|
|
|
|
|
Clonar o repositório
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git clone [Link do repositório]
|
|
|
|
```
|
|
|
|
|
|
|
|
Criação de uma nova branch
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git checkout -b [nome da branch]
|
|
|
|
```
|
|
|
|
|
|
|
|
Trocar entre branchs
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git checkout [nome da branch]
|
|
|
|
```
|
|
|
|
|
|
|
|
Deletar uma branch
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git branch -d [nome da branch]
|
|
|
|
```
|
|
|
|
|
|
|
|
Pegar modificações da branch remota
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git pull [nome da branch remota]
|
|
|
|
```
|
|
|
|
|
|
|
|
Adicionar arquivos modificados
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git add [nome do arquivo modificado]
|
|
|
|
```
|
|
|
|
|
|
|
|
Adicionar um commit
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git commit -m "uma mensagem sobre as alterações feitas"
|
|
|
|
```
|
|
|
|
|
|
|
|
Adicionar um commit com mais de um autor
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git commit -m "Refactor usability tests.
|
|
|
|
>
|
|
|
|
>
|
|
|
|
Co-authored-by: name <[email protected]>
|
|
|
|
Co-authored-by: another-name <[email protected]>"
|
|
|
|
```
|
|
|
|
|
|
|
|
Observação: o símbolo > significa uma linha vazia
|
|
|
|
|
|
|
|
Adicionar as alterações a branch remota
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git push [nome da branch remota]
|
|
|
|
``` |
|
|
|
\ No newline at end of file |