Squash in SourceTree

Updated Answer SourceTree for Windows As of version 1.5, you can now do interactive rebases, which will allow you to squash. SourceTree for Mac Interactive rebase has been available in SourceTree for Mac since version 1.6 (emphasis mine): The git rebase –interactive command allows you to reorganise your commits after you’ve created them (but before … Read more

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