Top "Git-flow" questions

The git-flow workflow defines a strict branching model designed around a project release.

Trying to understand what Travis CI does and when it should be used

I am very new to Git and I am planning to contribute to some open-source project on GitHub after discovering …

git travis-ci git-flow
Finishing a feature branch with GIT Flow

From my understanding one of the advantages of creating feature branches is so that you can easily see where large …

git version-control git-flow atlassian-sourcetree
How to share a git feature (or topic) branch with multiple developers

I'm following the the workflow described here, as I found many references pointing to this page as a good workflow. …

git git-branch git-flow remote-branch feature-branch
How to push the "develop" branch to the remote "origin"?

When I do git flow init it creates a master and develop branches. When I add the remote I do …

git github git-flow
Git flow command error: 'flow' is not a git command

I am very new to Git and am starting to learn the command line version. I believe my git flow …

github git-svn git-branch git-flow
What is a back-merge

I’ve watched some videos on the git-flow scripts and one term that comes up is “back merge” - e.…

git git-flow
Does Git flow deletes branch on remote server?

I am using git along with git flow. Here git flow has a develop branch. Whenever i need to start …

git git-flow
How should I update the version inside my pom.xml when releasing using git flow?

In maven projects the version of a project is contained in the <version> attritbute of the pom.xml …

git maven versioning git-flow
Set the develop branch as the default for a pull request

I want to make the pull request merge into develop from the feature branch by default. I'm advocating the use …

git github git-flow pull-request hubflow
What is the difference between develop vs. feature branch type?

I read few articles about Git flow best practices. There are many types of git branch (for example: [1], [2]): + Master + Develop + …

git git-flow