how can i disable fast-forward for mergining branches in aptana 3 ?

example:

  1. create/checkout a branch (foo)
  2. commit changes
  3. checkout master-branch
  4. merge with foo
link|improve this question

0% accept rate
feedback

2 Answers

Set it in project repository configuration

git config --add merge.ff false
link|improve this answer
Note that this might require a recent (1.7.6+) version of git. – madth3 Feb 16 at 1:58
Thanks for the note, i forgot about this. – ishi Feb 22 at 12:00
feedback

I think the nearest you get is to use merge --no-ff.

link|improve this answer
and how can i use --no-ff in the aptana plugin ? – Nils Rückmann Feb 7 at 10:25
No idea, sorry. – ams Feb 7 at 10:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.