Dogweather
Dogweather

Reputation: 16779

Is it safe to always git merge --no-ff (no fast-forward)?

I'd like to do no-ff merges by default. But am I giving up any safety, as is the case when using rebase?

Upvotes: 0

Views: 539

Answers (1)

Guillermo Mansilla
Guillermo Mansilla

Reputation: 3889

I would suggest to always use --no-ff so history is retained, in fact, that is the standard we use at my job, take a look at this document where we explain our git workflow

And here is a another explanation given here in stackoverflow

Upvotes: 1

Related Questions