... | ... | @@ -9,4 +9,41 @@ |
|
|
<th> [Infraestrutura](infraestrutura) </th>
|
|
|
<th> [BD](banco de dados) </th>
|
|
|
</tr>
|
|
|
</table> |
|
|
\ No newline at end of file |
|
|
</table>
|
|
|
|
|
|
# Git Workflow
|
|
|
|
|
|
## Criar uma nova branch para a sua feature
|
|
|
|
|
|
Feature:
|
|
|
```bash
|
|
|
git checkout -b feature/my-new-feature
|
|
|
```
|
|
|
|
|
|
Fix:
|
|
|
```bash
|
|
|
git checkout -b fix/my-new-bug
|
|
|
```
|
|
|
|
|
|
## Após implementação, adicione os arquivos ao stage
|
|
|
```bash
|
|
|
git add .
|
|
|
```
|
|
|
|
|
|
## Faça o commit das suas alterações
|
|
|
Feature:
|
|
|
```bash
|
|
|
git commit -m "feat: add new feature"
|
|
|
```
|
|
|
|
|
|
Fix
|
|
|
```bash
|
|
|
git commit -m "fix: fix new bug"
|
|
|
```
|
|
|
|
|
|
## Suba o código para a branch no GitLab
|
|
|
```bash
|
|
|
git push origin feature/my-new-feature
|
|
|
```
|
|
|
|
|
|
## Crie o Merge Request para a Develop |
|
|
\ No newline at end of file |