Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maestropravaler/git_gitflow

Comandos essenciais do Git e do Gitflow que ensino em uma playlist do meu canal do Youtube.
https://github.com/maestropravaler/git_gitflow

git gitflow github

Last synced: 1 day ago
JSON representation

Comandos essenciais do Git e do Gitflow que ensino em uma playlist do meu canal do Youtube.

Awesome Lists containing this project

README

        

## Comandos Básicos do Git / Gitflow
Este repositório está relacionado a [playlist](https://www.youtube.com/playlist?list=PLQvwSWYdLssx2xmuBSpOEVTjb2SQvR1_b) do meu canal no youtube onde ensino os comandos básicos do git e do gitflow.

## GitFlow e seu fluxo de Trabalho
![](assets/images/capa_gitflow.png)

1. Inicializando um repositório com o gitflow
```
git flow init
```
2. Criando e finalizando uma Feature
```
git flow feature start 'nomedafeature' # Criando a feature

git flow feature finish 'nomedafeature' # Finalizando a feature
```
3. Criando e finalizando um Release
```
git flow release start 'geralmentenumerodaversão'

git flow release finish 'geralmentenumerodaversão'
```
4. Realizando um hotfix
```
git flow hotfix start 'nomedohotfix'

git flow hotfix finish 'nomedohotfix'
```