Page 1 of 1

update error

Posted: Wednesday 16 July 2025 14:19
by JuanUil
Hi there,

I want to update to the new version but i can not get over this:

git pull
Updating e729d55..372b8fe
error: Your local changes to the following files would be overwritten by merge:
css/creative.css
docs/blocks/domoticzblocks.rst
docs/releasenotes/releasenotes.rst
js/blocks.js
js/blocktypes.js
js/components/domoticzblock.js
js/components/group.js
js/dashticz.js
js/loader.js
js/switches.js
js/thermostat.js
package-lock.json
package.json
tpl/thermostat_block.tpl
version.txt
Please commit your changes or stash them before you merge.
Aborting
make: *** [Makefile:119: update] Fout 1

Help please
Jan

Re: update error

Posted: Wednesday 16 July 2025 14:30
by jvdz
You have made "local" changes to the github repository, so you need to tell github what to do with those changes.
Do you remember why you have done them and what you changed?

Re: update error

Posted: Wednesday 16 July 2025 17:15
by gizmocuz
If you are uncertain, you can always issue this command before updating the sources (you will loose all changes)

git reset --hard origin/development

Assuming you are on the development branch

If you are a regular user, I wont advise compiling/running from source

Re: update error

Posted: Thursday 17 July 2025 9:11
by JuanUil
I don't remember making any changes.
When I do:
git reset --hard origin/development
fatal: ambiguous argument 'origin/development': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'

Re: update error

Posted: Thursday 17 July 2025 10:02
by waltervl
I think gizmocuz thought it was a Domoticz source files issue and not a Dashticz issue.
I think you should do the following for Dashticz to get over this issue:

Code: Select all

git reset --hard
git pull --force

Re: update error

Posted: Thursday 17 July 2025 10:10
by JuanUil
Thnx very much, that did the trick