Top "Feature-branch" questions

Git merge master into feature branch

Let’s say we have the following situation in Git: A created repository: mkdir GitTest2 cd GitTest2 git init Some …

git git-branch git-merge git-flow feature-branch
How can I delete all Git branches which have been merged?

I have many Git branches. How do I delete branches which have already been merged? Is there an easy way …

git github version-control branch feature-branch
Rebase feature branch onto another feature branch

I have two (private) feature branches that I'm working on. a -- b -- c <-- Master \ \ \ d -- …

git git-rebase feature-branch
Rebasing remote branches in Git

I am using an intermediate Git repository to mirror a remote SVN repository, from which people can clone and work …

git version-control branch rebase feature-branch
How to merge git commits in the develop branch to a feature branch

I have a develop branch and a feature branch in my git repo. I added a commit to develop and …

git git-merge git-rebase feature-branch
Feature Toggles vs Feature Branches

What are "Feature Toggles" and "Feature Branches" and what's the difference between them? What are the pros and cons? Why …

version-control continuous-integration feature-branch featuretoggle
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
git - branch alias?

I am researching switching from starteam to git. Currently, in starteam, we use "floating views" with special names. These floating …

git version-control branching-and-merging feature-branch
How to continuously build and deploy feature branches with Maven?

My team is using feature branches to implement new features and continuously deploys snapshot builds into a remote repo for …

maven continuous-integration maven-javadoc-plugin feature-branch maven-source-plugin
What happens when I 'git pull --rebase origin development' from within a feature branch?

Let's say I have a feature branch called FeatureA, and it is out of sync with (remote) development on which …

git rebase feature-branch