Home | Escopo e Cronograma | Git Workflow | Design e Mockups | Configuração | Arquitetura | Infraestrutura | BD | Gerência |
---|
Git Workflow
Criar uma nova branch para a sua feature
Feature:
git checkout -b feature/my-new-feature
Fix:
git checkout -b fix/my-new-bug
Após implementação, adicione os arquivos ao stage
git add .
Faça o commit das suas alterações
Feature:
git commit -m "feat: add new feature"
Fix
git commit -m "fix: fix new bug"
Suba o código para a branch no GitLab
git push origin feature/my-new-feature