Most voted "git-flow" questions
7 questions
Sort by count of
-
3
votes1
answer433
viewsGit: What are the possible streams 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 perform change is created a new…
-
2
votes1
answer166
viewsGit flow - batch commands
Each time you finish a branch, whether it’s release, Feature or Hotfix, I have to follow a series of commands to publish the changes to my repository. For example: I’ll finish a Hotfix of name ht001…
-
1
votes1
answer396
viewsHow do I rate a test, release or Feature?
If I create a test on something that already exists, does it enter as a release or Feature in a git-flow stream? why a test is an improvement but also something new.
-
1
votes1
answer69
viewsGIT FLOW How do I keep files in the master branch and develop and the release do not merge by deleting?
I have 3 format files. yml that I need them to always be on the master branch because it is they who run the automatic system post, but these files cannot be on the develop branch. So I went and…
-
0
votes1
answer373
viewsHow does the final git-flow (release) flow work?
Briefly (consider using git-flow): I created a repository, managed my Feature, created a release, finished this release, consulted the log of the develop branch and had as output: commit…
-
0
votes1
answer89
viewsGit Flow - Not creating the tag in master
We’ve just started working with Gitflow and we’re having a problem that isn’t creating the master tag... When we will generate a production version (master), Create a release branch: git flow…
-
-2
votes0
answers17
viewsDoubt about Git Flow
I’m a beginner in Git Flow, when using normal git, the procedure I used to create a new Git Flow was like this: Create a new branch from a specific branch Performed the commit Ran the push origin…