问题
how can i disable fast-forward for mergining branches in aptana 3 ?
example:
- create/checkout a branch (foo)
- commit changes
- checkout master-branch
- merge with foo
回答1:
Set it in project repository configuration
git config --add merge.ff false
回答2:
I think the nearest you get is to use merge --no-ff
.
来源:https://stackoverflow.com/questions/9159895/aptana-git-merge-without-fast-forward