Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • D Diário das Emoções Wiki
  • Project information
    • Project information
    • Activity
    • Labels
    • Planning hierarchy
    • Members
  • 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
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Create a new issue
  • Jobs
  • Issue Boards
Collapse sidebar
  • Diário das Emoções
  • Diário das Emoções Wiki
  • Wiki
  • GitFlow

GitFlow · Changes

Page history
Update GitFlow authored Apr 01, 2022 by Joseph Douglas Affeldt's avatar Joseph Douglas Affeldt
Hide whitespace changes
Inline Side-by-side
GitFlow.md
View page @ aff0552d
......@@ -60,4 +60,66 @@ MR serão aprovados para as branchs respeitando a nomenclatura definida na image
• fix/\[descrição_do_bug\] para main
• US0xx/\[descrição_da_tarefa\] para dev
\ No newline at end of file
• 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
Clone repository
  • Estudos Dirigidos
  • Gerência
  • GitFlow
  • Instalação
  • Requisitos
  • Retro
  • Utilizando a wiki
    • adicionando imagens
    • escrevendo em markdown
    • wiki no editor de texto
  • arquitetura
  • banco_dados
  • design_mockups
  • escopo
  • Home
  • instrucoes
View All Pages