deployment - How to turn off fast-forwarding in Git? -


We are trying to use GIT to develop our project.

We work from our personal treasure

To deploy on our hosting, we will send ftploy.com

We used to test it, all the work was just manually deployed, but it does not work automatically, when we merge the pull-request to our Master Branch.

I asked the support of this problem, the answer is:

Currently, if you are using a bitbasket and using a merge, Need to turn off fast-forwarding on GET installs.

Because I am a newbie, I can not understand what should I do and how my local GIT has been established which is linked to our main reserves on any other account?

You want to close it for a given branch:

 < Code> git config branch.master.mergeoptions "--no-ff"   

For any branch:

  git config merge.ff false < / Code>  

(from)

Those commands are executed in repo where you want not fast-forward (see "" ).

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -