From 0f9dda3bcaf87acaf3dcff1530ec46574e4e6431 Mon Sep 17 00:00:00 2001 From: Khyquer Ronaldy Date: Tue, 2 Sep 2025 20:18:26 -0300 Subject: [PATCH 1/2] Update README with GitFlow lab instructions Added initial instructions for using the GitFlow lab repository. --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fdce276..048e526 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# ads4-gitflow \ No newline at end of file + +# GitFlow Lab +Repositório para praticar Git Flow (feature, release, hotfix). + +## Instruções iniciais +1. Clone o repositório: + git clone https://github.com/khyquer/ads4-gitflow.git +2. Entre na pasta: + cd ads4-gitflow +3. Crie a sua branch: + git checkout -b feature/ From 098ba3b057628c61d43a7170a4286205c33cae22 Mon Sep 17 00:00:00 2001 From: ElyssonGabriel <160801008+ElyssonGabriel@users.noreply.github.com> Date: Tue, 9 Sep 2025 16:51:27 -0300 Subject: [PATCH 2/2] Create anotacoes-elysson.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat: adiciona anotações da aula – Elysson Gabriel --- anotacoes-elysson.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 anotacoes-elysson.md diff --git a/anotacoes-elysson.md b/anotacoes-elysson.md new file mode 100644 index 0000000..3091a9e --- /dev/null +++ b/anotacoes-elysson.md @@ -0,0 +1,27 @@ +# Anotações da Aula – GitFlow +**Nome:** Elysson Gabriel Barros Gomes +**Turma:** ADS4 + +--- + +## O que é GitFlow? +O GitFlow é um modelo de organização de branches em projetos Git, usado para manter o código organizado e facilitar o trabalho em equipe. +Ele define um fluxo claro para desenvolvimento, testes, lançamentos e correções. + +### Branches principais +- **main** → guarda a versão estável do projeto (produção). +- **develop** → guarda o código em desenvolvimento, onde as features são integradas. + +### Branches de apoio +- **feature/** → usada para desenvolver novas funcionalidades. +- **release/** → usada para preparar uma versão para ser lançada. +- **hotfix/** → usada para corrigir erros críticos diretamente em produção. + +--- + +## Passos que fiz nesta atividade +1. Fiz o fork do repositório da atividade no meu GitHub. +2. Criei a branch `develop` a partir da `main`. +3. Criei a branch `feature/anotacoes-elysson` a partir da `develop`. +4. Adicionei este arquivo com minhas anotações. +5. Abri um Pull Request seguindo o fluxo do GitFlow.