delete a ‘feature’ branch using gitflow without merging into master branch

It seems that I can just delete the branch according to the following sources: Evan Hahn dominiksymonowicz To quote Evan: To trash a branch using git-flow , simply delete it like you’d normally delete a Git branch: git branch -D whatever/branch/you/wanna/delete Note that this does a forced delete, so anything you did on that branch … Read more

What is the master branch and release branch for?

Once develop has acquired enough features for a release (or a predetermined release date is approaching), you fork a release branch off of develop. Creating this branch starts the next release cycle, so no new features can be added after this point.Only bug fixes, documentation generation, and other release-oriented tasks should go in this branch(which … Read more

git flow – how do I pause development on one feature to work on another

You do not need the git flow feature pause yak-Speedup command (feature pause doesn’t exist anyway). The command you want to use in place of git flow feature resume yak-Speedup is git flow feature checkout yak-Speedup; that will get you back on the yak-Speedup feature branch to continue development. Executing git flow displays: Try ‘git … Read more

How to reset the git-flow configuration in SourceTree?

No, it is not possible (at least not at SourceTree 1.4.1.0). It is possible however to do it manually by editing the file /.git/config in your git repository. The Git-Flow extension adds it s configuration in the following two sections, which can be freely edited. [gitflow “branch”] master = master develop = development/current [gitflow “prefix”] … Read more