Unable to update PlexConnect using git pull

Hello,

 

Since today I am not able to update PlexConnect using git pull.

 

git pull
Your configuration specifies to merge with the ref 'XML_templates'
from the remote, but no such ref was fetched.

 

Anyone seeing the same? Do you happen to know what the solution is?

 

 

Cheers.

There is no more "XML_templates" branch, it's been deleted and we're now using the "master" branch.

I'm no git expert but I think you could just do:- git pull master

Somebody please correct me if I'm wrong :)

Thanks,

I've just deleted the PlexConnect Directory and maintained the Settings.cfg file and executed "git clone https://github.com/iBaa/PlexConnect.git".

All is well now

Next time you might also want to save the ATVSettings.cfg file, depending on the changes you put into your aTV settings page...

Next time you might also want to save the ATVSettings.cfg file, depending on the changes you put into your aTV settings page...

Ah yes, thank you for that.

In any case, the Settings.cfg already saved the day, since I am running everything on a secondary ip address. Next time I'll save both.

you can use:

git branch master
git checkout master
git branch --set-upstream-to=origin/master master
git pull

:slight_smile:

when you want delete the old branch can use ‘git branch -d XML_templates’

I get a syntax error when i enter "git branch --set-upstream-to=origin/master master". Is it typed exactly like this?

I get a syntax error when i enter "git branch --set-upstream-to=origin/master master". Is it typed exactly like this?

Yes the line is correct, check your encoding for copy or use your keyboard..

I get a syntax error when i enter "git branch --set-upstream-to=origin/master master". Is it typed exactly like this?

Depending on the OS and version of python/git you are using but the following worked for me:

git branch --set-upstream master origin/master

git pull

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.