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...
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...
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, ...
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...
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...
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 ...
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?
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 ...
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?
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...
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 ...
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...
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...
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 ...
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
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...
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...
© 2022 - 2024 — McMap. All rights reserved.