Questions tagged as 'git-flow'

1
answer

Git flow - batch commands

Every time I've finalized a branch, be it release, feature or hotfix, I have to follow a series of commands to publish changes to my repository. For example: I will end a hotfix named ht001 so I do: git flow hotfix finish ht001 git checkout de...
asked by 22.05.2018 / 19:59
1
answer

How does the final flow of git-flow (release) work?

Briefly (consider using git-flow): I created a repository, generated my feature, created a release, finished the release, consulted the branch develop log, and had output: commit a6676da74f99342dd85e50e1251fd662d0be2680 Merge: 2c4958f 82190a0...
asked by 11.04.2018 / 21:18
2
answers

Git: what are the possible flows for two development environments?

I'm setting up a development environment with Git in some of my projects, my initial idea for simple projects is: The master branch is blocked, when someone needs to make a change, a new branch is created (same as the master), the change is m...
asked by 28.09.2018 / 19:41