git-flow Questions

3

I read few articles about Git flow best practices. There are many types of git branch (for example: [1], [2]): + Master + Develop + Feature + Bug + Proof of concept + Release + Hotfix What is th...
Learn asked 20/9, 2016 at 4:50

3

Solved

Is it possible to rename a feature branch using git-flow? I tried looking up git flow help and git flow feature help, and also the git-flow cheatsheet, but couldn't anything. Alternatively, is it...
Sastruga asked 21/4, 2015 at 0:13

0

I'm using git-flow for my codebase, and we are really happy. Yet, there's a conceptual problem with the support branch. I've a support branch for the version 1.x . Sometimes I've to apply hotfix, ...
Reconstruction asked 9/4, 2020 at 15:25

3

Git Flow has been around for a long time and lots of people seem to be adopting it for as their favourite git workflow. When it comes down to implementing Git Flow in a Java / Maven setting, I was...
Edema asked 18/11, 2017 at 16:57

2

I've got a repository with my develop branch protected and I'm using the GitFlow branching model. There's two branches; develop (containing features currently being developed) and master (latest de...
Applicator asked 7/3, 2017 at 14:54

3

Everywhere I look for the right way to use GIT in a team, we always get referred to git-flow. We started to use this scheme as our bible at the beginning: Time passed, and we finally found that ke...
Fomalhaut asked 8/2, 2019 at 17:0

3

Solved

I have seen multiple contradicting definitions on various git flow related websites. Is there an official recommendation or single source of truth? Branches: release-1.2.3 or release-v1.2.3 Tags:...
Orientalize asked 7/2, 2014 at 23:9

2

On http://nvie.com/posts/a-successful-git-branching-model/ it says: Release branches are created from the develop branch. For example, say version 1.1.5 is the current production release and we ...
Gersham asked 28/11, 2014 at 9:16

2

Solved

We are struggling with our Git Flow process, and deploying features to our Test and Live environment: We want all features that is ready for testing, be combined and deployed to the Test environm...
Overgrow asked 10/7, 2015 at 10:41

2

Solved

Is there any way to do this? Is the repo considered initialized if it simply has the git-flow directives in .git/config like .... [gitflow "branch"] master = master develop = develop [gitflow "p...
Overbuild asked 11/2, 2015 at 20:50

2

I'm trying to setup GitVersion to handle our project's semantic versioning (GitFlow), but it's not incrementing automatically as I'm expecting. I'm also struggling with reading the project's docume...
Launcher asked 28/10, 2019 at 16:14

1

Solved

I am new on git-flow. Want to know how the three topics are work actually and the difference between them? On feature, I started it with: git flow feature start features_name Is this important to ...
Barker asked 25/9, 2019 at 11:3

1

Solved

I'm working on update npm libraries (third-party packages) but I dont know to name branch: feature, hotfix, another?. What do you recommends me?
Parenthood asked 19/7, 2019 at 16:27

1

I am new to git and understand a little bit about Git. My company is currently have 1 program and the program divides into 5 products. each product is handling by different team. Currently my com...
Berkowitz asked 12/6, 2019 at 3:38

3

Solved

I am still new to this so I am trying to understand why master ends up 1 commit ahead of develop instead of the same after merging a release branch back into develop and master. My develop branch ...
Anhydrite asked 7/6, 2016 at 16:43

2

Solved

Is there a way to install Git Flow on Windows? I tried this tutorial but I'm unable to understand it. I already have Git Installed on my PC, can I use GitFlow from my current Git installation?
Bizarre asked 2/9, 2015 at 14:11

1

I'm using this model in my team: Today my project stats is following: The stable version is running in production using master branch We developed new functionalities that need to be tested bef...
Countertype asked 20/3, 2019 at 21:36

2

Solved

A common approach to the existence of both RC and Hotfix is: Hotfix should not exists (or can, but very shortly) the same time while there is a pending RC. Looking at this image : What ...
Arcturus asked 9/3, 2019 at 9:31

2

Solved

We're using GitLab for our project and we think it's great. We're also using git flow to manage the changes in feature, develop, master branches. Can you use the Merge Request build in GitLab to m...
Vite asked 3/11, 2013 at 8:7

3

Solved

I am very new to Git and I am planning to contribute to some open-source project on GitHub after discovering a small error in it. Upon forking it and fixing the error, I purposed a pull request and...
Headstream asked 23/3, 2014 at 4:39

1

Solved

Our dev team want to branch out (bad joke) into using a GitFlow like branching system where there would be a dev, uat and release branches(which would all need building from), I cant see a clever w...
Cyclosis asked 7/1, 2019 at 11:30

1

Solved

Gradle properties are stored to the file named gradle.properties. It can be located in the project root directory or in ~/.gradle/ According to this discussion on gradle.org, the property file in ...
Rodrick asked 4/1, 2019 at 13:32

5

Solved

I am using Gitkraken to manage my git activities but while initializing Git Flow using inbuilt option provided by Gitkraken it fails. Here is the screenshot that shows the error message
Gaeta asked 26/11, 2018 at 8:21

4

Solved

If you try to follow the git-flow branching model, documented here and with tools here, how should you handle this situation: You have made a 1.0 release and a 2.0 release. Then you need to make a...
Schnorkle asked 5/5, 2013 at 15:53

2

Solved

When I found some bugs in my project,I created a hotfix branch: git flow hotfix start fixSomeBug When I did some changes and commits,I wanted to merge these commits to master,so I typed git flo...
Wilt asked 16/11, 2015 at 11:51

© 2022 - 2024 — McMap. All rights reserved.