1

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
knittl
  • 246,190
  • 53
  • 318
  • 364
Nils Rückmann
  • 169
  • 1
  • 1
  • 6

2 Answers2

5

Set it in project repository configuration

git config --add merge.ff false
ishi
  • 51
  • 2
1

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

ams
  • 24,923
  • 4
  • 54
  • 75