Rawtherapee : Git error

Hello,

I can’t update RT from git anymore. I get the following :
git pull
Votre information de configuration indique de fusionner avec la référence 'refs/heads/newlocallab2' du serveur distant, mais cette référence n'a pas été récupérée.

The version stays stuck to 5.8-2149-g88d6c9f3c
I get the same with branch locallab_dev

I tried this :

`git checkout refs/heads/locallab_dev
Note : extraction de ‘refs/heads/locallab_dev’.

Vous êtes dans l’état « HEAD détachée ». Vous pouvez visiter, faire des modifications
expérimentales et les valider. Il vous suffit de faire une autre extraction pour
abandonner les commits que vous faites dans cet état sans impacter les autres branches

But then :
git pull
Vous n'êtes actuellement sur aucune branche.

My last update went fine on june 25th.

Is it me doing wrong or is there something wrong with the server ?
Thanks for your help.

Hi @FM33,

newlocallab2 has been merged to dev and been deleted afterwards so it’s no longer present on the server (aka origin). Thus, all fine. :+1: Just checkout dev.

HTH,
Flössie

1 Like
  • prune/cleanup the local references that are no longer present on remote

git remote prune origin

  • for synchronizing your local repository with the central repository

git fetch origin

This will display the branches that were downloaded. ( but not merged with the local corresponding branch)

It works fine now! Thank you both.