AlgoForge -> IDE error

 

I get an error when trying to pull from AlgoForge to IDE.

Can anyone help me with this?

 
bjorn_roskam:

I get an error when trying to pull from AlgoForge to IDE.

Can anyone help me with this?

Hi Bjorn,

The error "-11 reference was not fast-forwardable" usually means that there are changes on the remote repository (AlgoForge/MQL5 Storage) that you don't have locally yet. To fix this, follow these steps:

  1. Pull first: Right-click on your project in the Navigator and select Git > Pull (or Update from Storage) to bring the latest changes into your local IDE.

  2. Resolve Conflicts: If there are any code conflicts between your local version and the server version, MetaEditor will prompt you to resolve them.

  3. Push again: Once your local environment is up-to-date, try to Push your changes again.

Tip: It is a good practice to always "Pull" before you start working on your code to keep everything synchronized.