Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/maestropravaler/git_gitflow
- Owner: MaestroPravaler
- Created: 2021-02-06T23:15:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T23:21:55.000Z (almost 4 years ago)
- Last Synced: 2023-08-27T04:26:17.512Z (about 1 year ago)
- Topics: git, gitflow, github
- Homepage: https://www.youtube.com/playlist?list=PLQvwSWYdLssx2xmuBSpOEVTjb2SQvR1_b
- Size: 252 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
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 featuregit 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'
```