Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • W Wiki
  • Project information
    • Project information
    • Activity
    • Labels
    • Planning hierarchy
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Plataforma de Marketing e Sales Analytics
  • Wiki
  • Wiki
  • Git Workflow

Git Workflow · Changes

Page history
Update Git Workflow authored May 28, 2025 by Gabriel Grellert Spiandorello's avatar Gabriel Grellert Spiandorello
Hide whitespace changes
Inline Side-by-side
Git-Workflow.md
View page @ e61fa9d7
...@@ -9,4 +9,41 @@ ...@@ -9,4 +9,41 @@
<th> [Infraestrutura](infraestrutura) </th> <th> [Infraestrutura](infraestrutura) </th>
<th> [BD](banco de dados) </th> <th> [BD](banco de dados) </th>
</tr> </tr>
</table> </table>
\ No newline at end of file
# 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
Clone repository
  • Arquitetura
  • Banco de Dados
  • Configuração
  • Design e Mockups
  • Escopo e Cronograma
  • Gerência
  • Git Workflow
  • Infraestrutura
  • Home