Hi,
I need help I have been desperately trying for 2 days to synchronize my directory C:\PSYCHOPAV\EXP1 containing
my file “EXP1.psyexp” and 3 directories
Stimuli
data
ConfigFiles
When from the Psychopy application I try to synchronize
it asks me to create a new project
I put the name “EXP1”
directory: C:\PSYCHOPAV
I have pavlovia the project but when I go into it in view code. Nothing :-((
just an html page with
the following instructions
it seems so simple on the youtube videos. (Grrrrrr)
thanks for your help
Nazim
EXP1
Project ID: 441788
Star0
The repository for this project is empty
You can get started by cloning the repository or start adding files to it with one of the following options.
Command line instructions
You can also upload existing files from your computer using the instructions below.
Git global setup
git config --global user.name “XXXXX”
git config --global user.email “XXXX@YYYY.com”
Create a new repository
git clone git@gitlab.pavlovia.org:nbella/exp1.git cd exp1 touch README.md git add README.md git commit -m “add README” git push -u origin master
Push an existing folder
cd existing_folder git init git remote add origin git@gitlab.pavlovia.org:nbella/exp1.git git add . git commit -m “Initial commit” git push -u origin master
Push an existing Git repository
cd existing_repo git remote rename origin old-origin git remote add origin git@gitlab.pavlovia.org:nbella/exp1.git git push -u origin --all git push -u origin --tags
===================
Sync Error messages
Traceback (most recent call last):
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\app\builder\builder.py”, line 1612, in onPavloviaSync
pavlovia_ui.syncProject(parent=self, file=self.filename, project=self.project)
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\app\pavlovia_ui\project.py”, line 854, in syncProject
project.sync()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\projects\pavlovia.py”, line 912, in sync
self.firstPush(infoStream=infoStream)
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\projects\pavlovia.py”, line 1149, in firstPush
info = self.commit(
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\projects\pavlovia.py”, line 1315, in commit
info = self.repo.git.commit(‘-m’, message)
File “C:\Program Files\PsychoPy\lib\site-packages\git\cmd.py”, line 986, in
return lambda *args, **kwargs: self._call_process(name, *args, **kwargs)
File “C:\Program Files\PsychoPy\lib\site-packages\git\cmd.py”, line 1598, in _call_process
return self.execute(call, **exec_kwargs)
File “C:\Program Files\PsychoPy\lib\site-packages\git\cmd.py”, line 1388, in execute
raise GitCommandError(redacted_command, status, stderr_value, stdout_value)
git.exc.GitCommandError: Cmd(‘C:\Program Files\PsychoPy\MinGit\cmd\git.exe’) failed due to: exit code(1)
cmdline: C:\Program Files\PsychoPy\MinGit\cmd\git.exe commit -m Push initial project files
stdout: ‘On branch master
nothing to commit, working tree clean’