Error changing the status of experiment

Description of the problem:
I cannot run the experiment
it shows :

[ 500] “unable to pull the project from the GitLab repository: Cmd(‘git’) failed due to: exit code(1)\n cmdline: git pull\n stderr: ‘Your configuration specifies to merge with the ref ‘refs/heads/master’\nfrom the remote, but no such ref was fetched.’” ( #None )

name of my experiment:Wood/TestENG

Hello

Does your experiment run locally in a browser?

Best wishes Jens

Hi!Thank you for your response.
I create a new folder and sync again and it works. But new problem appears. it says pictures is not defined but the experiment run well locally.

By pictures do you mean a variable called pictures (put pictures = 0 in Begin Experiment) or your image files (add them via Experiment Settings / Online / Additional Resources)?

pictures is the name of a variable. i set the image=$pictures . l don’t know how to make pictures=0 at the begin experiment. I don’t know coding.l used the psychopy builder to create this experiment. And I add them in the experiment setting

Is pictures the name of your spreadsheet column?

If so, then perhaps you haven’t set the image to update each repeat. Is it still set to constant?

Yes. It is the name of my spreadsheet column . And in image properties I set “set every repeat”

You have a spreadsheet column called “pictures”? Please check spelling and that there are no spaces.

You tell the image component to load an image called “$pictures” set every repeat?

Do you modify the value of pictures in a code component or do anything else with it?

that problem was solved somehow(I don’t know how) and now it says unknown resource. I checked the similar question and change\to/ and I’m sure all the pictures are in the addition resources but still doesn’t work. Really thanks for your patience!

still doesn’t work. I check out other responses but still don’t know how to solve it. and the problem is getting more and more

the code:
image_2 = new visual.ImageStim({
win : psychoJS.window,
name : ‘image_2’, units : undefined,
image : ‘default.png’, mask : undefined,
anchor : ‘center’,
ori : 0.0,
pos : [0, 0],
draggable: false,
size : [0.5, 0.5],
color : new util.Color([1,1,1]), opacity : undefined,
flipHoriz : false, flipVert : false,
texRes : 128.0, interpolate : true, depth : -2.0
});

Hello

This error message tells you that your experiment cannot find the image file. PsychoPy is better
in finding misspelled files than PychoJS. Check your filenames for space, control lower/upper case and the file extension.

Best wishes Jens